forked from rongchao/epmet-cloud-rizhao
6 changed files with 62 additions and 9 deletions
@ -0,0 +1,40 @@ |
|||
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 NatHistoryExportExcel { |
|||
|
|||
@Excel(name = "排序",width = 10) |
|||
private Integer sort; |
|||
|
|||
@Excel(name = "姓名",width = 20) |
|||
private String name; |
|||
|
|||
@Excel(name = "电话",width = 20) |
|||
private String mobile; |
|||
@Excel(name = "所属房屋",width = 20) |
|||
private String allName; |
|||
|
|||
@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 lastNatTime; |
|||
|
|||
@Excel(name = "隔离状态",width = 20) |
|||
private String isolatedState; |
|||
|
|||
} |
Loading…
Reference in new issue