public Ld_Institution_Department GetDepartmentPro(int systemId, string companyId, string departmentId) { try { if (systemId == 0) { throw new Exception("系统编号不能为0!"); } if (string.IsNullOrWhiteSpace(companyId)) { throw new Exception("公司编号不能为空!"); } int errCode = -1; string errMsg = "fail"; var result = LdCmsDbEntitiesContext.SP_Get_Institution_Department(systemId, companyId, departmentId, out errCode, out errMsg); if (errCode != 0) { throw new Exception(errMsg); } if (result == null) { return(null); } else { return(result.ToObject <List <Ld_Institution_Department> >().FirstOrDefault()); } } catch (Exception ex) { throw new Exception(ex.Message); } }