All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.doyospy.core.annotation.IdCard Maven / Gradle / Ivy

Go to download

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[] payload() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy