123456789101112131415161718 |
- package com.zhongzheng.common.annotation;
- import java.lang.annotation.*;
- /**
- * 自定义注解防止表单重复提交
- *
- * @author zhongzheng
- *
- */
- @Inherited
- @Target(ElementType.METHOD)
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- public @interface RepeatSubmit
- {
- }
|