NoLogin.java 280 B

12345678910111213
  1. package com.poyee.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * 无需登录注解
  5. * 标注在类或方法上表示不需要登录即可访问
  6. */
  7. @Target({ElementType.METHOD, ElementType.TYPE})
  8. @Retention(RetentionPolicy.RUNTIME)
  9. @Documented
  10. public @interface NoLogin {
  11. }