猫妈狗爸伴宠师小程序后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
430 B

4 months ago
  1. package com.ruoyi.common.annotation;
  2. import java.lang.annotation.Documented;
  3. import java.lang.annotation.ElementType;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7. /**
  8. * 匿名访问不鉴权注解
  9. *
  10. * @author ruoyi
  11. */
  12. @Target({ ElementType.METHOD, ElementType.TYPE })
  13. @Retention(RetentionPolicy.RUNTIME)
  14. @Documented
  15. public @interface Anonymous {
  16. }