Esempio n. 1
0
 public ActionResult SaveCodeVersion(string typeId, string versionId, S102VerEntity s102VerEntity)
 {
     if (string.IsNullOrEmpty(versionId))
     {
         dictionaryBLL.CreateStandardVerForm(s102VerEntity);
     }
     else
     {
         dictionaryBLL.ModifyStandardVerForm(typeId, versionId, s102VerEntity);
     }
     return(Success("操作成功。"));
 }