public ActionResult SaveForm(string keyValue, PMR002MorDeptEntity deptEntity) { deptEntity.PARENTDEPT = deptEntity.PARENTDEPT == "0"?"ROOT":deptEntity.PARENTDEPT; sysBLL.SavePMR002MorDeptForm(keyValue, deptEntity); return(Success("操作成功。")); }
/// <summary> /// 保存主管机构部门表单(新增、修改) /// </summary> /// <param name="keyValue">主键值</param> /// <param name="{">区域实体</param> /// <returns></returns> public void SavePMR002MorDeptForm(string keyValue, PMR002MorDeptEntity deptEntity) { pmr002MorDeptService.SaveForm(keyValue, deptEntity); }