935090232@qq.com
2020-12-02 2e7d9e3e849bda0dae16c1f0c9623df7113b9d0b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.matrix.core.anotations;
 
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
/**
 * 防止重复提交的注解类
 * 标识删除访问的token
 * @author jiangyouyao
 *
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface RemoveRequestToken {
}