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 ""; }