1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.gkhy.hazmat.common.annotation;
| import java.lang.annotation.*;
|
| @Target({ ElementType.METHOD, ElementType.TYPE })
| @Retention(RetentionPolicy.RUNTIME)
| @Documented
| public @interface ThirdPartyToken {
| /**
| * token来源标识,用于区分不同的第三方平台
| * @return 平台标识
| */
| String platform() default "";
| }
|
|