日志白名单
parent
fef135791c
commit
db8a4fbe6f
@ -0,0 +1,18 @@
|
||||
package cn.estsh.i3plus.pojo.base.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/**
|
||||
* @Description : 忽略生成日志
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2019-02-14 10:35
|
||||
* @Modify:
|
||||
**/
|
||||
@Target(ElementType.METHOD)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface AnnoIgnoreLog {
|
||||
}
|
Loading…
Reference in New Issue