Example #1
0
 public ActionResult SaveDataItem(BpcSM001Entity item)
 {
     if (string.IsNullOrEmpty(item.JCSJBM) || item.JCSJBM.Contains(" "))
     {
         item.JCSJBM = VerifyCode.GetRandomCode();
     }
     if (string.IsNullOrEmpty(item.CREATOR))
     {
         bll.CreateStandardDataForm(item);
     }
     else
     {
         bll.ModifyStandardDataForm(item.JCSJBM, item);
     }
     return(Success("操作成功"));
 }