NoNeedLogin.java 490 B

12345678910111213141516171819202122
  1. package net.lab1024.smartadmin.common.anno;
  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. *
  8. * [ 不需要登陆 ]
  9. *
  10. * @version 1.0
  11. * @since JDK1.8
  12. * @author yandanyang
  13. * @company 1024lab.net
  14. * @copyright (c) 2019 1024lab.netInc. All rights reserved.
  15. * @date
  16. */
  17. @Retention(RetentionPolicy.RUNTIME)
  18. @Target(ElementType.METHOD)
  19. public @interface NoNeedLogin {
  20. }