Commit a76e94b4d422d18a37c9129b29e5b8c6ce3f3483
1 parent
b1d0529a13
Exists in
master
and in
8 other branches
platform permission
Showing 1 changed file with 15 additions and 0 deletions
platform-common/src/main/java/com/lyms/platform/common/annotation/TokenRequired.java
View file @
a76e94b
| 1 | +package com.lyms.platform.common.annotation; | |
| 2 | + | |
| 3 | + | |
| 4 | +import java.lang.annotation.ElementType; | |
| 5 | +import java.lang.annotation.Retention; | |
| 6 | +import java.lang.annotation.RetentionPolicy; | |
| 7 | +import java.lang.annotation.Target; | |
| 8 | + | |
| 9 | +/** | |
| 10 | + * Created by Administrator on 2015/9/25 0025. | |
| 11 | + */ | |
| 12 | +@Target({ElementType.TYPE, ElementType.METHOD}) | |
| 13 | +@Retention(RetentionPolicy.RUNTIME) | |
| 14 | +public @interface TokenRequired { | |
| 15 | +} |