🔖 发布 4.0.0 版本

This commit is contained in:
zhaojun
2022-07-10 21:44:14 +08:00
parent 082bb07213
commit 5d888bb68f
672 changed files with 18083 additions and 8856 deletions

View File

@@ -0,0 +1,17 @@
package im.zhaojun.zfile.admin.annoation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Referer 校验注解,标注了此注解的请求,会被校验 Referer 是否符合要求.
*
* @author zhaojun
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface RefererCheck {
}