8 changed files with 218 additions and 7 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,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