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
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!