parent
802e3d3cce
commit
649170d58d
@ -1,29 +1,29 @@
|
|||||||
package com.xxl.job.admin.controller.annotation;
|
package com.xxl.job.admin.controller.annotation;
|
||||||
|
|
||||||
|
|
||||||
import java.lang.annotation.ElementType;
|
import java.lang.annotation.ElementType;
|
||||||
import java.lang.annotation.Retention;
|
import java.lang.annotation.Retention;
|
||||||
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.RetentionPolicy;
|
||||||
import java.lang.annotation.Target;
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 权限限制
|
* 权限限制
|
||||||
* @author xuxueli 2015-12-12 18:29:02
|
* @author xuxueli 2015-12-12 18:29:02
|
||||||
*/
|
*/
|
||||||
@Target(ElementType.METHOD)
|
@Target(ElementType.METHOD)
|
||||||
@Retention(RetentionPolicy.RUNTIME)
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
public @interface PermessionLimit {
|
public @interface PermissionLimit {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 登录拦截 (默认拦截)
|
* 登录拦截 (默认拦截)
|
||||||
*/
|
*/
|
||||||
boolean limit() default true;
|
boolean limit() default true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 要求管理员权限
|
* 要求管理员权限
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
boolean adminuser() default false;
|
boolean adminuser() default false;
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in new issue