123456789101112131415161718192021222324 |
- package com.kmall.admin.annotation;
- import org.springframework.stereotype.Component;
- import java.lang.annotation.*;
- /**
- * 自定义防重复提交注解
- * @author hj
- * @createDate 2021-04-29
- */
- @Inherited
- @Target({ElementType.METHOD})
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- @Component
- public @interface NoRepeatSubmit {
- /**
- * 默认时间 默认5秒钟
- * @return
- */
- int lockTime() default 5000;
- }
|