Commit 38b951eae3a40c8b81d0d30ce9867036e067e6fb
1 parent
39bff89310
Exists in
master
and in
6 other branches
增加发送关爱街口
Showing 1 changed file with 9 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/SmsConfigController.java
View file @
38b951e
| ... | ... | @@ -10,6 +10,7 @@ |
| 10 | 10 | import com.lyms.platform.common.result.BaseResponse; |
| 11 | 11 | import com.lyms.platform.common.utils.DateUtil; |
| 12 | 12 | import com.lyms.platform.common.utils.StringUtils; |
| 13 | +import com.lyms.platform.operate.web.facade.AntenatalExaminationFacade; | |
| 13 | 14 | import com.lyms.platform.operate.web.facade.SmsConfigFacade; |
| 14 | 15 | import com.lyms.platform.operate.web.request.MessageListRequest; |
| 15 | 16 | import com.lyms.platform.operate.web.request.MessageRequest; |
| ... | ... | @@ -411,5 +412,13 @@ |
| 411 | 412 | return "sendBabyBuildSms finish"; |
| 412 | 413 | } |
| 413 | 414 | |
| 415 | + @RequestMapping(value = "/sms/build/send", method = RequestMethod.GET) | |
| 416 | + @ResponseBody | |
| 417 | + public String querySmsConfAndTemplate(@RequestParam("patientId")String patientId){ | |
| 418 | + examinationFacade.createSendMsg(patientId); | |
| 419 | + return "0"; | |
| 420 | + } | |
| 421 | + @Autowired | |
| 422 | + private AntenatalExaminationFacade examinationFacade; | |
| 414 | 423 | } |