Commit 6baa29f30a1bd9d3eb3e6a42052064a8cd4110c3
1 parent
3388a03f39
Exists in
master
and in
6 other branches
修复bug
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/BabyEvaluationCriterionServiceImpl.java
View file @
6baa29f
... | ... | @@ -925,8 +925,8 @@ |
925 | 925 | String startCheckTime = param.getStartCheckTime(); |
926 | 926 | String endCheckTime = param.getEndCheckTime(); |
927 | 927 | if (StringUtils.isNotEmpty(startCheckTime) && StringUtils.isNotEmpty(endCheckTime)) { |
928 | - Date start = DateUtil.parseYMDHMS(startCheckTime + " 00.00.00"); | |
929 | - Date endt = DateUtil.parseYMDHMS(endCheckTime + " 23.59.59"); | |
928 | + Date start = DateUtil.parseYMDHMS(startCheckTime + " 00:00:00"); | |
929 | + Date endt = DateUtil.parseYMDHMS(endCheckTime + " 23:59:59"); | |
930 | 930 | query.addCriteria(Criteria.where("createTime").gte(start).lte(endt)); |
931 | 931 | } |
932 | 932 |