game-api/ff-base/src/main/java/com/ff/base/annotation/RepeatSubmit.java

27 lines
490 B
Java
Raw Normal View History

2025-02-11 15:27:15 +08:00
package com.ff.base.annotation;
import java.lang.annotation.*;
/**
*
*
* @author ff
*
*/
@Inherited
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface RepeatSubmit
{
/**
* (ms)
*/
public int interval() default 5000;
/**
*
*/
public String message() default "不允许重复提交,请稍候再试";
}