mirror of https://github.com/elunez/eladmin
17 lines
358 B
Java
17 lines
358 B
Java
package me.zhengjie.annotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* @author jacky
|
|
* 用于标记匿名访问方法
|
|
*/
|
|
@Target(ElementType.METHOD)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface AnonymousAccess {
|
|
|
|
}
|