From 38556f3417e7ff8ba11456b3978424d123f8ae14 Mon Sep 17 00:00:00 2001 From: Chuck1sn Date: Fri, 25 Jul 2025 06:33:11 +0800 Subject: [PATCH] remove comment --- .../com/zl/mjga/annotation/SkipAopLog.java | 30 ------------------- 1 file changed, 30 deletions(-) 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 ""; }