|
|
@ -30,6 +30,11 @@ public class SMSController {
|
|
|
|
@PostMapping("singleSend")
|
|
|
|
@PostMapping("singleSend")
|
|
|
|
public JsonResult singleSend(@RequestBody @Validated SingleSendRequest request) {
|
|
|
|
public JsonResult singleSend(@RequestBody @Validated SingleSendRequest request) {
|
|
|
|
sendCheckContext.check(request);
|
|
|
|
sendCheckContext.check(request);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//TODO 构建StandardSubmit,各种业务处理
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//TODO 发送到MQ
|
|
|
|
|
|
|
|
|
|
|
|
return JsonResultUtil.ok();
|
|
|
|
return JsonResultUtil.ok();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|