DisableBaseResponse注解

master
Eterlaze 2 months ago
parent 12ea837508
commit 62b0db2147

@ -6,9 +6,11 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
* DisableBaseResponse 使
*
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD) // 指定该注解只能用于方法
@Retention(RetentionPolicy.RUNTIME) // 指定该注解在运行时有效
public @interface DisableBaseResponse {
// 该注解定义为空,不包含任何成员变量
}

Loading…
Cancel
Save