zhaowenxuan
2024-12-02 b98bda282397df60077efbe4c1ad35a44bdfffb9
ltkj-framework/src/main/java/com/ltkj/framework/interceptor/RepeatSubmitInterceptor.java
@@ -27,7 +27,7 @@
            RepeatSubmit annotation = method.getAnnotation(RepeatSubmit.class);
            if (annotation != null) {
                if (this.isRepeatSubmit(request, annotation)) {
                    AjaxResult ajaxResult = AjaxResult.error(annotation.message());
                    AjaxResult ajaxResult = AjaxResult.success();
                    ServletUtils.renderString(response, JSON.toJSONString(ajaxResult));
                    return false;
                }