Commit 2befe344e63a695fd1ee16ca7db71236a980ec02
1 parent
6276e681b4
Exists in
master
and in
6 other branches
先心筛查
Showing 2 changed files with 11 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/BabyHeartReviewModel.java
View file @
2befe34
| ... | ... | @@ -21,6 +21,15 @@ |
| 21 | 21 | private Date created; |
| 22 | 22 | private Date modified; |
| 23 | 23 | private String checkDoctor; |
| 24 | + private Date nextDate; | |
| 25 | + | |
| 26 | + public Date getNextDate() { | |
| 27 | + return nextDate; | |
| 28 | + } | |
| 29 | + | |
| 30 | + public void setNextDate(Date nextDate) { | |
| 31 | + this.nextDate = nextDate; | |
| 32 | + } | |
| 24 | 33 | |
| 25 | 34 | public String getCsxdt() { |
| 26 | 35 | return csxdt; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyHeartSieveFacede.java
View file @
2befe34
| ... | ... | @@ -295,6 +295,7 @@ |
| 295 | 295 | data.put("xx",model.getXx()); |
| 296 | 296 | data.put("csxdt",model.getCsxdt()); |
| 297 | 297 | data.put("checkDate",DateUtil.getyyyy_MM_dd(model.getCheckDate())); |
| 298 | + data.put("nextDate",DateUtil.getyyyy_MM_dd(model.getNextDate())); | |
| 298 | 299 | list.add(data); |
| 299 | 300 | } |
| 300 | 301 | } |
| ... | ... | @@ -338,6 +339,7 @@ |
| 338 | 339 | data.put("xdt",one.getXdt()); |
| 339 | 340 | data.put("xx",one.getXx()); |
| 340 | 341 | data.put("checkDate",DateUtil.getyyyy_MM_dd(one.getCheckDate())); |
| 342 | + data.put("nextDate",DateUtil.getyyyy_MM_dd(one.getNextDate())); | |
| 341 | 343 | data.put("checkDoctor",usersService.getUsers(Integer.parseInt(one.getCheckDoctor())).getName()); |
| 342 | 344 | data.put("hospitalName",organizationService.getOrganizationName(one.getHospitalId())); |
| 343 | 345 | return new BaseObjectResponse().setErrorcode(ErrorCodeConstants.SUCCESS) |