1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.common.annotation;
|
| import java.lang.annotation.*;
|
| /**
| * @author 廖振钦
| * @date 2022-01-17
| * */
| @Target({ElementType.PARAMETER, ElementType.METHOD})
| @Retention(RetentionPolicy.RUNTIME)
| @Documented
| public @interface NoToken {
| }
|
|