3 changed files with 87 additions and 2 deletions
@ -0,0 +1,35 @@ |
|||
package com.epmet.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/3/29 10:24 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class NatExportExcel { |
|||
|
|||
@Excel(name = "排序",width = 10) |
|||
private Integer sort; |
|||
|
|||
@Excel(name = "姓名",width = 20) |
|||
private String name; |
|||
|
|||
@Excel(name = "电话",width = 20) |
|||
private String mobile; |
|||
|
|||
@Excel(name = "身份证",width = 30) |
|||
private String idCard; |
|||
|
|||
@Excel(name = "备注",width = 40) |
|||
private String remark; |
|||
|
|||
@Excel(name = "关注原因",width = 40) |
|||
private String reason; |
|||
|
|||
@Excel(name = "最近一次通知时间",width = 20) |
|||
private String lastInformTime; |
|||
|
|||
} |
@ -0,0 +1,35 @@ |
|||
package com.epmet.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/3/29 10:24 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class VaccinationExportExcel { |
|||
|
|||
@Excel(name = "排序",width = 10) |
|||
private Integer sort; |
|||
|
|||
@Excel(name = "姓名",width = 20) |
|||
private String name; |
|||
|
|||
@Excel(name = "电话",width = 20) |
|||
private String mobile; |
|||
|
|||
@Excel(name = "身份证",width = 30) |
|||
private String idCard; |
|||
|
|||
@Excel(name = "备注",width = 40) |
|||
private String remark; |
|||
|
|||
@Excel(name = "接种针次",width = 10) |
|||
private Integer vaccinationCount; |
|||
|
|||
@Excel(name = "最近一次通知时间",width = 20) |
|||
private String lastInformTime; |
|||
|
|||
} |
Loading…
Reference in new issue