Exemplo n.º 1
0
 public ActionResult SaveCode(string typeId, string verId, string codeId, S103CodeEntity s103CodeEntity)
 {
     if (string.IsNullOrEmpty(codeId))
     {
         dictionaryBLL.CreateStandardCodeForm(s103CodeEntity);
     }
     else
     {
         dictionaryBLL.ModifyStandardCodeForm(typeId, verId, codeId, s103CodeEntity);
     }
     return(Success("操作成功。"));
 }