com.doyospy.core.annotation.IdCard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doyospy-all Show documentation
Show all versions of doyospy-all Show documentation
Doyospy是一个小而全的基于SpringBoot的java工具类库,通过静态方法封装,方便开发者使用,降低学习成本并提升工作效率。
The newest version!
package com.doyospy.core.annotation;
import javax.validation.Constraint;
import javax.validation.Payload;
import java.lang.annotation.*;
/**
* 身份证号校验
* @author Robin
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Constraint(validatedBy = IdCardValidated.class)
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.ANNOTATION_TYPE, ElementType.CONSTRUCTOR, ElementType.PARAMETER, ElementType.TYPE_USE})
public @interface IdCard {
String message() default "身份证号格式不正确";
Class>[] groups() default {};
Class extends Payload>[] payload() default {};
}