lin
2024-04-20 4fca12e02f0d2444d83c6316ba63b249cd0e8505
src/main/java/org/springblade/modules/sms/controller/SmsSendController.java
@@ -53,6 +53,9 @@
   /**
    * 发送居住申请通知
    * @param templateId 模版id
    * @param residenceId 居住证申请记录id
    * @return
    */
   @GetMapping("/sendNotice")
   @ApiOperationSupport(order = 1)
@@ -63,5 +66,20 @@
      return R.status(aBoolean);
   }
   /**
    *
    * @param templateId
    * @param placeSelfCheckId
    * @return
    */
   @GetMapping("/sendRectificationNotice")
   @ApiOperationSupport(order = 1)
   @ApiOperation(value = "发送整改完成通知")
   public R<SmsTemplateVO> sendRectificationNotice(@RequestParam("templateId") Long templateId,
                              @RequestParam(value = "placeSelfCheckId",required = false) Long placeSelfCheckId) {
      Boolean aBoolean = iSmsSendService.sendRectificationNotice(templateId,placeSelfCheckId);
      return R.status(aBoolean);
   }
}