示例#1
0
 public ActionResult SaveQual(BpeTB001Entity qual)
 {
     if (string.IsNullOrEmpty(qual.CREATOR))
     {
         bll.CreateQualitativeIndicatorsForm(qual);
     }
     else
     {
         bll.ModifyQualitativeIndicatorsForm(qual.ZBBH, qual.JXBM, qual);
     }
     return(Success("操作成功"));
 }