forked from wanjia9506/soft_bot
15 lines
349 B
Java
15 lines
349 B
Java
package com.gitlink.softbot.annotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
|
|
@Target(ElementType.METHOD) // 作用到方法上
|
|
@Retention(RetentionPolicy.RUNTIME) // 运行时有效
|
|
public @interface NoRepeatSubmit {
|
|
|
|
}
|
|
|