Merge remote-tracking branch 'remotes/origin/dev' into test
commit
a68771db32
@ -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