Commit a8cead5d8e23c78282d21f49a57c062caad9d337
1 parent
3397c6bdd2
Exists in
master
and in
6 other branches
增加返回数据
Showing 1 changed file with 2 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PostReviewServiceImpl.java
View file @
a8cead5
... | ... | @@ -74,6 +74,8 @@ |
74 | 74 | for (PostReviewModel model : grid) { |
75 | 75 | Map<String, Object> tempMap = new HashMap<>(); |
76 | 76 | Patients p = mongoTemplate.findById(model.getParentId(), Patients.class); |
77 | + tempMap.put("id", model.getId()); | |
78 | + tempMap.put("vcCardNo", p.getVcCardNo()); | |
77 | 79 | tempMap.put("checkTime", model.getCheckTime() == null ? null : DateUtil.getyyyy_MM_dd(model.getCheckTime())); /** 复查日期 */ |
78 | 80 | tempMap.put("hcertificateNum", p == null ? null : p.getCardNo()); /** 证件号 */ |
79 | 81 | tempMap.put("username", p == null ? null : p.getUsername()); /** 姓名 */ |