Commit 9e4196351f8bf36cba9db642a1e07ce5856ca66a
1 parent
0932e1c9d8
Exists in
master
and in
6 other branches
添加字段
Showing 3 changed files with 22 additions and 1 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/BabyAfterVisitInfoModel.java
View file @
9e41963
| ... | ... | @@ -148,6 +148,19 @@ |
| 148 | 148 | |
| 149 | 149 | private String hospitalId; |
| 150 | 150 | |
| 151 | + /** | |
| 152 | + * 最近检查时间 | |
| 153 | + */ | |
| 154 | + private Date latelyDate; | |
| 155 | + | |
| 156 | + public Date getLatelyDate() { | |
| 157 | + return latelyDate; | |
| 158 | + } | |
| 159 | + | |
| 160 | + public void setLatelyDate(Date latelyDate) { | |
| 161 | + this.latelyDate = latelyDate; | |
| 162 | + } | |
| 163 | + | |
| 151 | 164 | // TODO 2019/6/29 15:55 dongqing 参数未完 |
| 152 | 165 | |
| 153 | 166 | public String getHospitalId() { |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/BabyAfterVisitServiceImpl.java
View file @
9e41963
| ... | ... | @@ -532,6 +532,10 @@ |
| 532 | 532 | String diagnosisTimeStr = diagnosisTime == null ? "" : DateUtil.getyyyy_MM_dd(diagnosisTime); |
| 533 | 533 | objectMap.put("diagnosisTimeStr", diagnosisTimeStr); |
| 534 | 534 | |
| 535 | + Date latelyDate = model.getLatelyDate(); | |
| 536 | + String latelyDateStr = latelyDate == null ? "" : DateUtil.getyyyy_MM_dd(latelyDate); | |
| 537 | + objectMap.put("latelyDateStr", latelyDateStr); | |
| 538 | + | |
| 535 | 539 | mapList.add(objectMap); |
| 536 | 540 | } |
| 537 | 541 | |
| ... | ... | @@ -835,7 +839,10 @@ |
| 835 | 839 | if (Objects.equals(TYPE_CHECK, type)) { |
| 836 | 840 | nextDate = new Date(); |
| 837 | 841 | } |
| 838 | - mongoTemplate.updateFirst(query, Update.update("appointmentTime", nextDate), BabyAfterVisitInfoModel.class); | |
| 842 | + Update update = new Update(); | |
| 843 | + update.set("appointmentTime", nextDate); | |
| 844 | + update.set("latelyDate", new Date()); | |
| 845 | + mongoTemplate.updateFirst(query, update, BabyAfterVisitInfoModel.class); | |
| 839 | 846 | if (Objects.equals(TYPE_BUILD, type)) { |
| 840 | 847 | // 针对档案转正时,将其状态直接更新为作废 |
| 841 | 848 | mongoTemplate.updateFirst(query, Update.update("yn", 2), BabyAfterVisitInfoModel.class); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/BabyAfterVisitInfoModelWork.java
View file @
9e41963