|
@ -5,6 +5,10 @@ import lombok.Data; |
|
|
import javax.validation.constraints.NotBlank; |
|
|
import javax.validation.constraints.NotBlank; |
|
|
import java.io.Serializable; |
|
|
import java.io.Serializable; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 家庭成员信息 |
|
|
|
|
|
* 前端做校验 |
|
|
|
|
|
*/ |
|
|
@Data |
|
|
@Data |
|
|
public class IcResiCollectMemFormDTO implements Serializable { |
|
|
public class IcResiCollectMemFormDTO implements Serializable { |
|
|
/** |
|
|
/** |
|
@ -14,13 +18,13 @@ public class IcResiCollectMemFormDTO implements Serializable { |
|
|
/** |
|
|
/** |
|
|
* 居住成员1姓名 |
|
|
* 居住成员1姓名 |
|
|
*/ |
|
|
*/ |
|
|
@NotBlank(message = "姓名不能为空", groups = {IcResiCollectFormDTO.InternalShowGroup.class, IcResiCollectFormDTO.ExternalShowGroup.class}) |
|
|
// @NotBlank(message = "姓名不能为空", groups = {IcResiCollectFormDTO.InternalShowGroup.class, IcResiCollectFormDTO.ExternalShowGroup.class})
|
|
|
private String name; |
|
|
private String name; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 居住成员1身份证号 |
|
|
* 居住成员1身份证号 |
|
|
*/ |
|
|
*/ |
|
|
@NotBlank(message = "身份证号不能为空", groups = {IcResiCollectFormDTO.InternalShowGroup.class, IcResiCollectFormDTO.ExternalShowGroup.class}) |
|
|
// @NotBlank(message = "身份证号不能为空", groups = {IcResiCollectFormDTO.InternalShowGroup.class, IcResiCollectFormDTO.ExternalShowGroup.class})
|
|
|
private String idNum; |
|
|
private String idNum; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|