forked from luyan/epmet-cloud-lingshan
9 changed files with 315 additions and 9 deletions
@ -0,0 +1,24 @@ |
|||
package com.epmet.dto.form.dataSync; |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/10/13 14:47 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class DataSyncRecordDisabilityFormDTO extends PageFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -20061989190666183L; |
|||
|
|||
private String name; |
|||
private String idCard; |
|||
private String mobile; |
|||
private String customerId; |
|||
private String userId; |
|||
private String agencyId; |
|||
} |
@ -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 = ""; |
|||
} |
|||
} |
@ -0,0 +1,59 @@ |
|||
package com.epmet.excel; |
|||
|
|||
import com.alibaba.excel.annotation.ExcelProperty; |
|||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/10/13 15:29 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class DataSyncRecordDisabilityExcel { |
|||
|
|||
@ExcelProperty(value = "姓名") |
|||
@ColumnWidth(20) |
|||
private String name; |
|||
|
|||
@ExcelProperty(value = "证件号") |
|||
@ColumnWidth(20) |
|||
private String idCard; |
|||
|
|||
@ExcelProperty(value = "手机") |
|||
@ColumnWidth(20) |
|||
private String mobile; |
|||
|
|||
@ExcelProperty(value = "性别") |
|||
@ColumnWidth(20) |
|||
private String gender; |
|||
|
|||
@ExcelProperty(value = "民族") |
|||
@ColumnWidth(20) |
|||
private String mz; |
|||
|
|||
@ExcelProperty(value = "家庭住址") |
|||
@ColumnWidth(20) |
|||
private String address; |
|||
|
|||
@ExcelProperty(value = "残疾类别") |
|||
@ColumnWidth(20) |
|||
private String cjlb; |
|||
|
|||
@ExcelProperty(value = "残疾等级") |
|||
@ColumnWidth(20) |
|||
private String cjzk; |
|||
|
|||
@ExcelProperty(value = "监护人") |
|||
@ColumnWidth(20) |
|||
private String guardian; |
|||
|
|||
@ExcelProperty(value = "状态") |
|||
@ColumnWidth(20) |
|||
private String dealStatusName; |
|||
|
|||
@ExcelProperty(value = "失败原因") |
|||
@ColumnWidth(20) |
|||
private String dealResult; |
|||
|
|||
} |
Loading…
Reference in new issue