4 changed files with 97 additions and 2 deletions
@ -0,0 +1,81 @@ |
|||
package com.epmet.dto.form.dataSync; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/10/13 15:58 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class ResiInfoDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -3320460795150912451L; |
|||
|
|||
|
|||
/** |
|||
* 姓名 |
|||
*/ |
|||
private String name; |
|||
|
|||
/** |
|||
* 身份证 |
|||
*/ |
|||
private String idCard; |
|||
|
|||
/** |
|||
* 电话 |
|||
*/ |
|||
private String mobile; |
|||
|
|||
|
|||
/** |
|||
* 残疾证号 |
|||
*/ |
|||
private String cardNum; |
|||
|
|||
/** |
|||
* 残疾等级(状况) |
|||
*/ |
|||
private String cjzk; |
|||
|
|||
/** |
|||
* 残疾类别 |
|||
*/ |
|||
private String cjlb; |
|||
|
|||
/** |
|||
* 民族 |
|||
*/ |
|||
private String mz; |
|||
|
|||
/** |
|||
* 家庭住址 |
|||
*/ |
|||
private String address; |
|||
|
|||
/** |
|||
* 性别 |
|||
*/ |
|||
private String gender; |
|||
|
|||
/** |
|||
* 监护人 |
|||
*/ |
|||
private String guardian; |
|||
|
|||
public ResiInfoDTO() { |
|||
this.name = ""; |
|||
this.idCard = ""; |
|||
this.mobile = ""; |
|||
this.cardNum = ""; |
|||
this.cjzk = ""; |
|||
this.cjlb = ""; |
|||
this.mz = ""; |
|||
this.address = ""; |
|||
this.gender = ""; |
|||
this.guardian = ""; |
|||
} |
|||
} |
Loading…
Reference in new issue