mirror of https://github.com/elunez/eladmin
# 注解完善
parent
acc1d253e4
commit
cf13fa922c
|
@ -15,15 +15,14 @@
|
||||||
*/
|
*/
|
||||||
package me.zhengjie.annotation;
|
package me.zhengjie.annotation;
|
||||||
|
|
||||||
import java.lang.annotation.ElementType;
|
import java.lang.annotation.*;
|
||||||
import java.lang.annotation.Retention;
|
|
||||||
import java.lang.annotation.RetentionPolicy;
|
|
||||||
import java.lang.annotation.Target;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author jacky
|
* @author jacky
|
||||||
* 用于标记匿名访问方法
|
* 用于标记匿名访问方法
|
||||||
*/
|
*/
|
||||||
|
@Inherited
|
||||||
|
@Documented
|
||||||
@Target({ElementType.METHOD,ElementType.ANNOTATION_TYPE})
|
@Target({ElementType.METHOD,ElementType.ANNOTATION_TYPE})
|
||||||
@Retention(RetentionPolicy.RUNTIME)
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
public @interface AnonymousAccess {
|
public @interface AnonymousAccess {
|
||||||
|
|
Loading…
Reference in New Issue