AOP自定义注解


import java.lang.annotation.*;

/**
* @auther: 作者 GZH,自定义注解
* @description: 类说明
* @Date: created in 15:29 2019/7/5
*/
@Target({ElementType.PARAMETER, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface SystemLogs {
String module() default "";
String methods() default "";
}
posted @ 2019-11-08 17:24  A汉克先生  阅读(138)  评论(0编辑  收藏  举报