Commit 8965d1c4043c5fbd0ccd3b0bc585ce08f33e60f7

Authored by litao
1 parent 6bc83b8984

证件号

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PostReviewServiceImpl.java View file @ 8965d1c
... ... @@ -75,7 +75,7 @@
75 75 Map<String, Object> tempMap = new HashMap<>();
76 76 Patients p = mongoTemplate.findById(model.getParentId(), Patients.class);
77 77 tempMap.put("checkTime", model.getCheckTime()); /** 复查日期 */
78   - tempMap.put("hcertificateNum", p == null ? null : p.getHcertificateNum()); /** 证件号 */
  78 + tempMap.put("hcertificateNum", p == null ? null : p.getCardNo()); /** 证件号 */
79 79 tempMap.put("username", p == null ? null : p.getUsername()); /** 姓名 */
80 80 tempMap.put("age", p == null ? null : DateUtil.getAge(p.getBirth())); /** 年龄 */
81 81 tempMap.put("day", p == null ? null : model.getDay()); /** 产后天数 */