ApiPassToken.java 418 B

123456789101112131415161718
  1. package com.dgtly.common.annotation;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Retention;
  4. import java.lang.annotation.RetentionPolicy;
  5. import java.lang.annotation.Target;
  6. /***
  7. * 用来跳过验证的 PassToken
  8. * @author MRC
  9. * @date 2019年4月4日 下午7:01:25
  10. */
  11. @Target({ElementType.METHOD, ElementType.TYPE})
  12. @Retention(RetentionPolicy.RUNTIME)
  13. public @interface ApiPassToken {
  14. }