linwe
2024-08-13 590d573bf646f44f0608adcb89f04c576ec90e39
src/main/java/org/springblade/modules/sms/controller/SmsSendController.java
@@ -109,9 +109,9 @@
   @GetMapping("/batchSendNotice")
   @ApiOperationSupport(order = 1)
   @ApiOperation(value = "批量发送通知")
   public R<SmsTemplateVO> batchSendNotice(@RequestParam("templateId") Long smsTaskId) {
   public void batchSendNotice(@RequestParam("smsTaskId") Long smsTaskId) {
      Boolean aBoolean = iSmsSendService.batchSendNotice( smsTaskId);
      return R.status(aBoolean);
      // return R.status(aBoolean);
   }