首页>代码>基于SpringBoot+Vue校园失物招领系统的设计与实现>/源代码/xiaoyuanshiwu/src/main/java/com/annotation/IgnoreAuth.java
package com.annotation; import java.lang.annotation.*; /** * 忽略Token验证 */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface IgnoreAuth { }
