goupan
2024-04-03 5506e9a45e717ffcb67ec313b5a4e8206d9b3a39
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package cn.stylefeng.roses.kernel.validator.api.validators.phone;
 
import javax.validation.Constraint;
import javax.validation.Payload;
import java.lang.annotation.*;
 
import static java.lang.annotation.RetentionPolicy.RUNTIME;
 
/**
 * 校验手机号码格式
 *
 * @author fengshuonan
 * @date 2020/10/31 14:53
 */
@Documented
@Constraint(validatedBy = PhoneValueValidator.class)
@Target({ElementType.FIELD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
public @interface PhoneValue {
 
    String message() default "手机号码格式不正确";
 
    Class[] groups() default {};
 
    Class<? extends Payload>[] payload() default {};
 
    /**
     * 是否必填
     * <p>
     * 如果必填,在校验的时候本字段没值就会报错
     */
    boolean required() default true;
 
    @Target({ElementType.FIELD, ElementType.PARAMETER})
    @Retention(RUNTIME)
    @Documented
    @interface List {
        PhoneValue[] value();
    }
}