Commit 6fc2bd815e645060cb50af7ff158ee1a378c3954
1 parent
2f67b6ac31
Exists in
master
and in
1 other branch
code update
Showing 2 changed files with 3 additions and 3 deletions
platform-data-api/src/main/java/com/lyms/platform/data/service/impl/SmsServiceImpl.java
View file @
6fc2bd8
... | ... | @@ -88,7 +88,7 @@ |
88 | 88 | String week = DateUtil.getWeekOfDate(new Date()); |
89 | 89 | query.setGuideTime(week); |
90 | 90 | |
91 | - query.setHospitalId(221+""); | |
91 | +// query.setHospitalId(221+""); | |
92 | 92 | |
93 | 93 | //查询出对应周几要发送的的医院配置 |
94 | 94 | List<SmsConfigModel> configs = smsConfigService.querySmsConfig(query); |
... | ... | @@ -633,7 +633,7 @@ |
633 | 633 | SmsConfigQuery configQuery = new SmsConfigQuery(); |
634 | 634 | configQuery.setYn(YnEnums.YES.getId()); |
635 | 635 | configQuery.setPrefixTypes(new Integer[]{0, 1}); |
636 | - configQuery.setHospitalId(221 + ""); | |
636 | + // configQuery.setHospitalId(221 + ""); | |
637 | 637 | |
638 | 638 | //查询出对应医院配置 |
639 | 639 | List<SmsConfigModel> configs = smsConfigService.querySmsConfig(configQuery); |
platform-data-api/src/main/java/com/lyms/platform/data/util/AmsMessageService.java
View file @
6fc2bd8