Commit 1560eb37628c270e377c302aa663fdc7eb50d7f4
1 parent
e3eda0315c
Exists in
master
and in
6 other branches
update code
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SieveRecordFacade.java
View file @
1560eb3
| ... | ... | @@ -310,7 +310,7 @@ |
| 310 | 310 | String[] dates = createTime.split(" - "); |
| 311 | 311 | query.setCreateTimeStart(DateUtil.parseYMD(dates[0])); |
| 312 | 312 | if (dates.length == 2) { |
| 313 | - query.setCreateTimeEnd(DateUtil.parseYMD(dates[1]+" 23:59:59")); | |
| 313 | + query.setCreateTimeEnd(DateUtil.parseYMDHMS(dates[1] + " 23:59:59")); | |
| 314 | 314 | } |
| 315 | 315 | } |
| 316 | 316 |