1、sonarqube质量修复;2、短信模板增删查询移除短信渠道相关内容;

This commit is contained in:
gaoqr
2024-10-11 16:09:34 +08:00
parent 7391b6365d
commit 2da653d9fb
24 changed files with 243 additions and 272 deletions
@@ -20,7 +20,7 @@ import org.springframework.web.bind.annotation.RestControllerAdvice;
public class ReportExceptionHandler {
@ExceptionHandler(value = ReportException.class)
public CommonResult<?> reportExceptionHandler(ReportException ex) {
public CommonResult reportExceptionHandler(ReportException ex) {
log.warn("[reportExceptionHandler]", ex);
return CommonResult.error(GlobalErrorCodeConstants.INTERNAL_SERVER_ERROR.getCode(), String.format("报表异常:%s", ex.getMessage()));
}