forked from rongchao/epmet-cloud-rizhao
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
2.5 KiB
117 lines
2.5 KiB
3 years ago
|
package com.epmet.excel;
|
||
|
|
||
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.Date;
|
||
|
|
||
|
/**
|
||
|
* 新冠病毒疫苗接种人员信息台账
|
||
|
*
|
||
|
* @author generator generator@elink-cn.com
|
||
|
* @since v1.0.0 2022-08-22
|
||
|
*/
|
||
|
@Data
|
||
|
public class IcVaccinePrarmeterExcel {
|
||
|
|
||
|
@Excel(name = "主键")
|
||
|
private String id;
|
||
|
|
||
|
@Excel(name = "客户Id customer.id")
|
||
|
private String customerId;
|
||
|
|
||
|
@Excel(name = "网格ID")
|
||
|
private String gridId;
|
||
|
|
||
|
@Excel(name = "网格名称")
|
||
|
private String gridName;
|
||
|
|
||
|
@Excel(name = "组织Id")
|
||
|
private String agencyId;
|
||
|
|
||
|
@Excel(name = "组织的pids")
|
||
|
private String pids;
|
||
|
|
||
|
@Excel(name = "所属小区ID;")
|
||
|
private String villageId;
|
||
|
|
||
|
@Excel(name = "所属小区名称")
|
||
|
private String villageName;
|
||
|
|
||
|
@Excel(name = "所属楼宇Id")
|
||
|
private String buildId;
|
||
|
|
||
|
@Excel(name = "所属楼宇名称")
|
||
|
private String buildName;
|
||
|
|
||
|
@Excel(name = "单元id")
|
||
|
private String unitId;
|
||
|
|
||
|
@Excel(name = "单元名")
|
||
|
private String unitName;
|
||
|
|
||
|
@Excel(name = "所属家庭Id")
|
||
|
private String homeId;
|
||
|
|
||
|
@Excel(name = "房间名")
|
||
|
private String homeName;
|
||
|
|
||
|
@Excel(name = "户口性质:0户籍 1外来")
|
||
|
private String householdType;
|
||
|
|
||
|
@Excel(name = "姓名")
|
||
|
private String name;
|
||
|
|
||
|
@Excel(name = "联系电话")
|
||
|
private String mobile;
|
||
|
|
||
|
@Excel(name = "身份证号")
|
||
|
private String idCard;
|
||
|
|
||
|
@Excel(name = "是否接种:0否1是")
|
||
|
private String isVaccination;
|
||
|
|
||
|
@Excel(name = "第一次接种时间")
|
||
|
private String firstVacTime;
|
||
|
|
||
|
@Excel(name = "第一次接种地点")
|
||
|
private String firstVacSite;
|
||
|
|
||
|
@Excel(name = "第二次接种时间")
|
||
|
private String secondVacTime;
|
||
|
|
||
|
@Excel(name = "第二次接种地点")
|
||
|
private String secondVacSite;
|
||
|
|
||
|
@Excel(name = "第三次接种时间")
|
||
|
private String thirdVacTime;
|
||
|
|
||
|
@Excel(name = "第三次接种地点")
|
||
|
private String thirdVacSite;
|
||
|
|
||
|
@Excel(name = "原因:禁忌症/拒绝接种/其他原因")
|
||
|
private String reason;
|
||
|
|
||
|
@Excel(name = "备注")
|
||
|
private String note;
|
||
|
|
||
|
@Excel(name = "删除标识 0.未删除 1.已删除")
|
||
|
private Integer delFlag;
|
||
|
|
||
|
@Excel(name = "乐观锁")
|
||
|
private Integer revision;
|
||
|
|
||
|
@Excel(name = "创建人")
|
||
|
private String createdBy;
|
||
|
|
||
|
@Excel(name = "创建时间")
|
||
|
private Date createdTime;
|
||
|
|
||
|
@Excel(name = "更新人")
|
||
|
private String updatedBy;
|
||
|
|
||
|
@Excel(name = "更新时间")
|
||
|
private Date updatedTime;
|
||
|
|
||
|
|
||
|
}
|