Browse Source

接口防抖防重复提交

pull/2/head
程序员蜗牛 1 year ago
parent
commit
98fb3bbb0f
  1. 17
      接口防抖防重复提交/woniu-springboot-interface-demo-master/src/main/java/com/woniu/demo/annotation/RequestKeyParam.java

17
接口防抖防重复提交/woniu-springboot-interface-demo-master/src/main/java/com/woniu/demo/annotation/RequestKeyParam.java

@ -0,0 +1,17 @@
package com.woniu.demo.annotation;
import java.lang.annotation.*;
/**
* @className: RequestKeyParam
* @author: woniu
* @date: 2024/1/3
**/
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface RequestKeyParam {
}
Loading…
Cancel
Save