Commit 9b987b7718f75dee2884b3452f98fa14222db905
1 parent
a0dbbda04f
Exists in
master
and in
6 other branches
孕妇学校
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/CourseFacade.java
View file @
9b987b7
... | ... | @@ -119,7 +119,7 @@ |
119 | 119 | String[] dates = courseTime.split(" - "); |
120 | 120 | query.setCourseTimeStart(DateUtil.parseYMD(dates[0])); |
121 | 121 | if (dates.length == 2) { |
122 | - query.setCourseTimeEnd(DateUtil.parseYMD(dates[1] + " 23:59:59")); | |
122 | + query.setCourseTimeEnd(DateUtil.parseYMDHMS(dates[1] + " 23:59:59")); | |
123 | 123 | } |
124 | 124 | } |
125 | 125 |