2 changed files with 80 additions and 4 deletions
@ -0,0 +1,75 @@ |
|||
package com.epmet.excel.error; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author wgf |
|||
* @DateTime 2022/6/21 16:57 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class IcVaccinePrarmeterImportErrorModel { |
|||
|
|||
@Excel(name = "行号",width = 10) |
|||
private Integer num; |
|||
|
|||
|
|||
@Excel(name = "所属网格",width = 30) |
|||
private String gridName; |
|||
|
|||
@Excel(name = "所属小区",width = 30) |
|||
private String villageName; |
|||
|
|||
@Excel(name = "所属楼宇",width = 30) |
|||
private String buildName; |
|||
|
|||
@Excel(name = "单元",width = 30) |
|||
private String unitName; |
|||
|
|||
@Excel(name = "所属家庭",width = 30) |
|||
private String homeName; |
|||
|
|||
@Excel(name = "户口性质", replace = {"户籍_0","外来_1"},width = 30) |
|||
private String householdType; |
|||
|
|||
@Excel(name = "姓名",width = 30) |
|||
private String name; |
|||
|
|||
@Excel(name = "联系电话",width = 30) |
|||
private String mobile; |
|||
|
|||
@Excel(name = "身份证号",width = 30) |
|||
private String idCard; |
|||
|
|||
@Excel(name = "是否接种", replace = {"否_0","是_1"},width = 30) |
|||
private String isVaccination; |
|||
|
|||
@Excel(name = "第一次接种时间",width = 30) |
|||
private String firstVacTime; |
|||
|
|||
@Excel(name = "第一次接种地点",width = 30) |
|||
private String firstVacSite; |
|||
|
|||
@Excel(name = "第二次接种时间",width = 30) |
|||
private String secondVacTime; |
|||
|
|||
@Excel(name = "第二次接种地点",width = 30) |
|||
private String secondVacSite; |
|||
|
|||
@Excel(name = "第三次接种时间",width = 30) |
|||
private String thirdVacTime; |
|||
|
|||
@Excel(name = "第三次接种地点",width = 30) |
|||
private String thirdVacSite; |
|||
|
|||
@Excel(name = "原因",width = 30) |
|||
private String reason; |
|||
|
|||
@Excel(name = "备注",width = 30) |
|||
private String note; |
|||
|
|||
@Excel(name = "错误信息", width = 200) |
|||
private String errorMsg; |
|||
|
|||
} |
Loading…
Reference in new issue