Commit aa8a9e5c0bee8fe943574970b0cfe5c9908ddb12
1 parent
64de37db09
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 @
aa8a9e5
| ... | ... | @@ -251,7 +251,7 @@ |
| 251 | 251 | String[] dates = createTime.split(" - "); |
| 252 | 252 | query.setCreateTimeStart(DateUtil.parseYMD(dates[0])); |
| 253 | 253 | if (dates.length == 2) { |
| 254 | - query.setCreateTimeEnd(DateUtil.parseYMD(dates[1])); | |
| 254 | + query.setCreateTimeEnd(DateUtil.parseYMDHMS(dates[1]+" 23:59:59")); | |
| 255 | 255 | } |
| 256 | 256 | } |
| 257 | 257 |