Commit 4f5d5edcfdda4ab02a8f4587e823d2484fe85c80
1 parent
6e46c905d0
Exists in
master
and in
1 other branch
update code
Showing 3 changed files with 4 additions and 4 deletions
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/BabyBookbuildingController.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/BookbuildingController.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SmsTemplateFacade.java
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/BabyBookbuildingController.java
View file @
4f5d5ed
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/BookbuildingController.java
View file @
4f5d5ed
| ... | ... | @@ -3,16 +3,13 @@ |
| 3 | 3 | |
| 4 | 4 | import javax.validation.Valid; |
| 5 | 5 | |
| 6 | -import com.lyms.platform.biz.service.AntenatalExaminationService; | |
| 7 | 6 | import com.lyms.platform.common.utils.StringUtils; |
| 8 | 7 | import com.lyms.platform.operate.web.facade.AntenatalExaminationFacade; |
| 9 | 8 | import com.lyms.platform.operate.web.request.AntenatalExaminationQueryRequest; |
| 10 | -import com.lyms.platform.operate.web.request.BabyManageRequest; | |
| 11 | 9 | import org.springframework.beans.factory.annotation.Autowired; |
| 12 | 10 | import org.springframework.stereotype.Controller; |
| 13 | 11 | import org.springframework.web.bind.annotation.*; |
| 14 | 12 | |
| 15 | -import com.lyms.platform.biz.service.BabyBookbuildingService; | |
| 16 | 13 | import com.lyms.platform.biz.service.YunBookbuildingService; |
| 17 | 14 | import com.lyms.platform.common.base.BaseController; |
| 18 | 15 | import com.lyms.platform.common.constants.ErrorCodeConstants; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SmsTemplateFacade.java
View file @
4f5d5ed
| ... | ... | @@ -209,8 +209,10 @@ |
| 209 | 209 | |
| 210 | 210 | String dateRange = temp.getStart() == null ? "" : (temp.getStart() + " "+ temp.getEnd()); |
| 211 | 211 | |
| 212 | + String date = temp.getSendDate() == null ? "" : DateUtil.getyyyy_MM_dd(temp.getSendDate()); | |
| 213 | + | |
| 212 | 214 | String splDate = temp.getSpecialDateType() == null ? "" : SpecialDateEnums.getNameById(temp.getSpecialDateType()); |
| 213 | - String str = SendFrequencyEnums.getNameById(temp.getSendFrequency())+ " " + sendDate+" "+splDate+ " " +dateRange; | |
| 215 | + String str = SendFrequencyEnums.getNameById(temp.getSendFrequency())+ " " + sendDate +" "+ date+" "+splDate+ " " +dateRange; | |
| 214 | 216 | |
| 215 | 217 | |
| 216 | 218 |