12345678910111213141516 |
- package com.huaxu.logAdvice;
- import java.lang.annotation.ElementType;
- import java.lang.annotation.Retention;
- import java.lang.annotation.RetentionPolicy;
- import java.lang.annotation.Target;
- /**
- * 日志注解
- *
- */
- @Target({ ElementType.TYPE,ElementType.METHOD })
- @Retention(RetentionPolicy.RUNTIME)
- public @interface LogAnnotation {
- String module() default "";
- }
|