| | |
| | | |
| | | /** |
| | | * 发送居住申请通知 |
| | | * @param templateId 模版id |
| | | * @param residenceId 居住证申请记录id |
| | | * @return |
| | | */ |
| | | @GetMapping("/sendNotice") |
| | | @ApiOperationSupport(order = 1) |
| | |
| | | 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); |
| | | } |
| | | |
| | | |
| | | } |