| | |
| | | |
| | | String API_PREFIX = "/client"; |
| | | String SAVE_SMS_RECORD = API_PREFIX + "/saveSmsRecord"; |
| | | String SEND_SMS_BY_OUT_CALL_NOT_CONNECT = API_PREFIX + "/sendSmsByOutCallNotConnect"; |
| | | |
| | | /** |
| | | * 保存短信发送记录 |
| | |
| | | void saveSmsRecord(@RequestParam("userNumber")String userNumber, |
| | | @RequestParam("messageContent")String messageContent, |
| | | @RequestParam("templateId")String templateId, |
| | | @RequestParam("code")Integer code, |
| | | @RequestParam("code")String code, |
| | | @RequestParam("msg")String msg, |
| | | @RequestParam("number")Integer number); |
| | | |
| | | /** |
| | | * 外呼未接通-发送短信 |
| | | * @param taskId |
| | | * @param time |
| | | * @return |
| | | */ |
| | | @GetMapping(SEND_SMS_BY_OUT_CALL_NOT_CONNECT) |
| | | String sendSmsByOutCallNotConnect(@RequestParam("taskId")String taskId, |
| | | @RequestParam("time")String time); |
| | | } |