diff --git a/backend/src/main/java/com/zl/mjga/annotation/SkipAopLog.java b/backend/src/main/java/com/zl/mjga/annotation/SkipAopLog.java index 40dd158..c0781c5 100644 --- a/backend/src/main/java/com/zl/mjga/annotation/SkipAopLog.java +++ b/backend/src/main/java/com/zl/mjga/annotation/SkipAopLog.java @@ -6,40 +6,10 @@ import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; -/** - * 跳过AOP日志记录注解 - * - *

在方法上添加此注解,该方法将不会被AOP日志切面拦截和记录。 - * - *

使用场景: - * - *

- * - *

使用示例: - * - *

{@code
- * @SkipAopLog
- * public void sensitiveMethod() {
- *     // 此方法不会被AOP日志记录
- * }
- * }
- * - * @author AOP Log System - * @since 1.0 - */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface SkipAopLog { - /** - * 跳过日志记录的原因说明(可选) - * - * @return 跳过原因 - */ String reason() default ""; }