parent
b9f877dbc1
commit
30be2891f8
@ -0,0 +1,16 @@
|
||||
package com.zh.project0512.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/**
|
||||
* admin检查权限注解
|
||||
*/
|
||||
@Target({ElementType.METHOD})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface AdminCheckAuthorityAnnotation {
|
||||
// 权限编号
|
||||
String jurisdictionId() default "";
|
||||
}
|
Loading…
Reference in new issue