Commit 10adf9b75bb9e8f0783e0a6f00c045db47b9f873
1 parent
baff05d17a
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 @
10adf9b
... | ... | @@ -306,7 +306,7 @@ |
306 | 306 | String[] dates = createTime.split(" - "); |
307 | 307 | query.setCreateTimeStart(DateUtil.parseYMD(dates[0])); |
308 | 308 | if (dates.length == 2) { |
309 | - query.setCreateTimeEnd(DateUtil.parseYMD(dates[1])); | |
309 | + query.setCreateTimeEnd(DateUtil.parseYMD(dates[1]+" 23:59:59")); | |
310 | 310 | } |
311 | 311 | } |
312 | 312 |