20 lines
490 B
Java
20 lines
490 B
Java
package com.test.bijihoudaun.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 RequireCaptcha {
|
|
/**
|
|
* 验证码用途描述
|
|
*/
|
|
String value() default "";
|
|
}
|