| 1234567891011121314151617 |
- package com.ruoyi.system.utils;
- import java.lang.annotation.*;
- /**
- * Created with IntelliJ IDEA.
- *
- * @Auther: ZouTiancong
- * @Date: 2022/05/23/22:37
- * @Description:
- */
- @Target({ ElementType.TYPE, ElementType.METHOD })
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- public @interface Auth {
- boolean token() default true;
- }
|