Exemplo n.º 1
0
 public ActionResult SaveCodeType(string keyValue, S101TypeEntity s101TypeEntity)
 {
     if (string.IsNullOrEmpty(keyValue))
     {
         dictionaryBLL.CreateStandardTypeForm(s101TypeEntity);
     }
     else
     {
         dictionaryBLL.ModifyStandardTypeForm(keyValue, s101TypeEntity);
     }
     return(Success("操作成功。"));
 }