提交 | 用户 | 时间 | ||
1ac2bc | 1 | package cn.stylefeng.guns.sys.core.validation; |
懒 | 2 | |
3 | import javax.validation.Constraint; | |
4 | import java.lang.annotation.*; | |
5 | ||
6 | @Documented | |
7 | @Constraint(validatedBy = PhoneNumberValidator.class) | |
8 | @Target({ElementType.FIELD, ElementType.PARAMETER}) | |
9 | @Retention(RetentionPolicy.RUNTIME) | |
10 | public @interface PhoneNumber { | |
11 | String message() default "Invalid phone number"; | |
12 | Class[] groups() default {}; | |
13 | Class[] payload() default {}; | |
14 | } |