修复时间格式
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -8,7 +8,7 @@ public class LocalDateTimeUtil { | ... | @@ -8,7 +8,7 @@ public class LocalDateTimeUtil { |
8 | public static String todayStart() { | 8 | public static String todayStart() { |
9 | LocalDate now = LocalDate.now(); | 9 | LocalDate now = LocalDate.now(); |
10 | 10 | ||
11 | return now+" 00:00:00"; | 11 | return now.toString(); |
12 | } | 12 | } |
13 | 13 | ||
14 | public static String todayEnd() { | 14 | public static String todayEnd() { | ... | ... |
-
Please register or sign in to post a comment