com.yupaits.commons.annotation.NoVisitLog Maven / Gradle / Ivy
package com.yupaits.commons.annotation;
import java.lang.annotation.*;
/**
* 该注解用于标注不需要记录访问日志的类或方法
* @author yupaits
* @date 2019/2/27
*/
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface NoVisitLog {
}