Commit a0e2d7e9193ae44b33feeffe5af6f252103d6f9a
1 parent
1e8c569253
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 6 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyBuildClassifyFacade.java
View file @
a0e2d7e
... | ... | @@ -55,6 +55,12 @@ |
55 | 55 | if (request.getCreatedEnd() != null) { |
56 | 56 | request.setCreatedEnd(DateUtil.getDayLastSecond(request.getCreatedEnd())); |
57 | 57 | } |
58 | + if (request.getBabyBuildDateEnd() != null) { | |
59 | + request.setBabyBuildDateEnd(DateUtil.getDayLastSecond(request.getBabyBuildDateEnd())); | |
60 | + } | |
61 | + if (request.getBirthEnd() != null) { | |
62 | + request.setBirthEnd(DateUtil.getDayLastSecond(request.getBirthEnd())); | |
63 | + } | |
58 | 64 | List<BabyBuildClassifyModel> resultList=babyBuildClassifyService.queryList(request, Sort.Direction.DESC,new String[]{"created"}); |
59 | 65 | List<Map> result=new ArrayList<>(); |
60 | 66 | for (BabyBuildClassifyModel model : resultList) { |