AOP自定义注解
时间:2019-11-08 18:04:34
收藏:0
阅读:95
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 "";
}
原文:https://www.cnblogs.com/gzhbk/p/11821731.html
评论(0)