|
|
@ -2,6 +2,8 @@ package com.epmet.dto.form; |
|
|
|
|
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import javax.validation.constraints.NotBlank; |
|
|
|
import javax.validation.constraints.NotNull; |
|
|
|
import java.io.Serializable; |
|
|
|
|
|
|
|
@Data |
|
|
@ -13,25 +15,30 @@ public class IcResiCollectMemFormDTO implements Serializable { |
|
|
|
/** |
|
|
|
* 居住成员1姓名 |
|
|
|
*/ |
|
|
|
@NotBlank(message = "姓名不能为空", groups = {IcResiCollectFormDTO.InternalShowGroup.class, IcResiCollectFormDTO.ExternalShowGroup.class}) |
|
|
|
private String name; |
|
|
|
|
|
|
|
/** |
|
|
|
* 居住成员1身份证号 |
|
|
|
*/ |
|
|
|
@NotBlank(message = "身份证号不能为空", groups = {IcResiCollectFormDTO.InternalShowGroup.class, IcResiCollectFormDTO.ExternalShowGroup.class}) |
|
|
|
private String idNum; |
|
|
|
|
|
|
|
/** |
|
|
|
* 居住成员1手机号 |
|
|
|
*/ |
|
|
|
@NotBlank(message = "手机号不能为空", groups = {IcResiCollectFormDTO.InternalShowGroup.class, IcResiCollectFormDTO.ExternalShowGroup.class}) |
|
|
|
private String mobile; |
|
|
|
|
|
|
|
/** |
|
|
|
* 居住成员1是否参加几轮全员核算检测,数字1-10 |
|
|
|
*/ |
|
|
|
@NotBlank(message = "核算检测情况不能为空", groups = {IcResiCollectFormDTO.InternalShowGroup.class, IcResiCollectFormDTO.ExternalShowGroup.class}) |
|
|
|
private String heSuanCount; |
|
|
|
|
|
|
|
/** |
|
|
|
* 居住成员1新冠疫苗接种情况;1:已全程接种;2:未全程接种;0未接种; |
|
|
|
*/ |
|
|
|
@NotNull(message = "疫苗接种情况不能为空", groups = {IcResiCollectFormDTO.InternalShowGroup.class, IcResiCollectFormDTO.ExternalShowGroup.class}) |
|
|
|
private Integer ymjz; |
|
|
|
} |
|
|
|