Commit 4143fc998002e8dbfd2527cc885c9a390c5586cc
1 parent
6f8f5a6551
Exists in
master
and in
1 other branch
听力诊断模块
Showing 1 changed file with 1 additions and 1 deletions
platform-common/src/main/java/com/lyms/platform/common/utils/DateUtil.java
View file @
4143fc9
| ... | ... | @@ -970,7 +970,7 @@ |
| 970 | 970 | Integer betweenDay = DateUtil.getDays(start, end); |
| 971 | 971 | Integer week = betweenDay / 7; |
| 972 | 972 | Integer day = betweenDay % 7; |
| 973 | - return "孕" + week + "周+" + (day > 0 ? "+" + day + "天" : ""); | |
| 973 | + return "孕" + week + "周" + (day > 0 ? "+" + day + "天" : ""); | |
| 974 | 974 | } |
| 975 | 975 | |
| 976 | 976 | /** |