Commit df8975d8646fcb84f28ebd817dce85559bd729fb

Authored by liquanyu
1 parent da1791f6fe

两癌

Showing 2 changed files with 3 additions and 3 deletions

platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/UsersServiceImpl.java View file @ df8975d
... ... @@ -147,7 +147,7 @@
147 147 String seq1 = currentYear+"00001";
148 148 Map<String,String> dbMap = new HashMap<>();
149 149 dbMap.put("seq",seq1);
150   - dbMap.put("hospital_id",hospitalId);
  150 + dbMap.put("hospitalId",hospitalId);
151 151 usersMapper.updateSmnSeq(dbMap);
152 152 return seq1;
153 153 }
... ... @@ -160,7 +160,7 @@
160 160 String seq = currentYear+"00001";
161 161 Map<String,String> dbMap = new HashMap<>();
162 162 dbMap.put("seq",seq);
163   - dbMap.put("hospital_id",hospitalId);
  163 + dbMap.put("hospitalId",hospitalId);
164 164 usersMapper.insertSmnSeq(dbMap);
165 165 return seq;
166 166 }
platform-dal/src/main/java/com/lyms/platform/pojo/CancerExamineRecordModel.java View file @ df8975d
... ... @@ -9,7 +9,7 @@
9 9 public class CancerExamineRecordModel extends BaseModel {
10 10 private String id;
11 11 private String parentId;//CancerExamineModel对象的id
12   - private Integer examineLevel;// 审核级别 1 录入 2 县(行政审核) 3 市(行政审核) 4 省(行政审核) 5 国家(行政审核) 6 驳回待修改 7 驳回已修改
  12 + private Integer examineLevel;// 审核级别 1 录入 2 县(行政审核) 3 市(行政审核) 4 省(行政审核) 5 国家(行政审核)
13 13 private String backReason; //驳回原因
14 14 private Date examineDate;//审核时间/驳回时间
15 15 private String hospitalId;