You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
373 B
20 lines
373 B
package com.epmet.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
import javax.validation.constraints.NotBlank;
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @program: epmet-plugins
|
|
* @description:
|
|
* @author: wangtong
|
|
* @create: 2022-05-09 13:52
|
|
**/
|
|
@Data
|
|
public class CheckWelfareByIdCardDTO implements Serializable {
|
|
|
|
|
|
@NotBlank(message = "身份证不能为空")
|
|
private String idCard;
|
|
}
|
|
|