13 lines
304 B
Java
13 lines
304 B
Java
package com.rabbiter.em.annotation;
|
|
|
|
import com.rabbiter.em.entity.AuthorityType;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target({ElementType.TYPE,ElementType.METHOD})
|
|
@Documented
|
|
public @interface Authority {
|
|
AuthorityType value() default AuthorityType.requireLogin;
|
|
}
|