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