Commit e360823948bcaa3262d30b8f107e0694631888a9
1 parent
a434f75c6b
Exists in
master
and in
6 other branches
update code
Showing 1 changed file with 6 additions and 3 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/LisFacade.java
View file @
e360823
| ... | ... | @@ -394,8 +394,11 @@ |
| 394 | 394 | if (lis.getAge() != null) { |
| 395 | 395 | check.setAge(lis.getAge().toString()); |
| 396 | 396 | } |
| 397 | - check.setApplyDate(lis.getPublishTime()); | |
| 398 | - check.setApplyDateStr(DateUtil.getyyyy_MM_dd(lis.getPublishTime())); | |
| 397 | + check.setApplyDate(lis.getApplyTime()); | |
| 398 | + check.setApplyDateStr(DateUtil.getyyyy_MM_dd(lis.getApplyTime())); | |
| 399 | + | |
| 400 | +// check.setApplyDate(lis.getPublishTime()); | |
| 401 | +// check.setApplyDateStr(DateUtil.getyyyy_MM_dd(lis.getPublishTime())); | |
| 399 | 402 | check.setCheckDept(lis.getApplyDept()); |
| 400 | 403 | check.setDoctor(lis.getApplyDoctor()); |
| 401 | 404 | check.setSex(lis.getSex()); |
| ... | ... | @@ -771,7 +774,7 @@ |
| 771 | 774 | query.setPage(page); |
| 772 | 775 | query.setLimit(limit); |
| 773 | 776 | query.setNeed("true"); |
| 774 | - query.setSort(" PUBLISH_TIME DESC "); | |
| 777 | + query.setSort(" APPLY_TIME DESC "); | |
| 775 | 778 | query.setStatus(0); //未推送状态 |
| 776 | 779 | |
| 777 | 780 |