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.
87 lines
1.8 KiB
87 lines
1.8 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-06-20
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
public class IcPointVaccinesInoculationExcel {
|
||
|
|
|
||
|
|
@Excel(name = "ID")
|
||
|
|
private String id;
|
||
|
|
|
||
|
|
@Excel(name = "客户ID")
|
||
|
|
private String customerId;
|
||
|
|
|
||
|
|
@Excel(name = "所属组织ID")
|
||
|
|
private String orgId;
|
||
|
|
|
||
|
|
@Excel(name = "所属组织名称")
|
||
|
|
private String orgName;
|
||
|
|
|
||
|
|
@Excel(name = "组织ID上级")
|
||
|
|
private String pid;
|
||
|
|
|
||
|
|
@Excel(name = "组织ID所有上级")
|
||
|
|
private String pids;
|
||
|
|
|
||
|
|
@Excel(name = "疫苗接种点名称")
|
||
|
|
private String name;
|
||
|
|
|
||
|
|
@Excel(name = "接种日期")
|
||
|
|
private String inoculationDate;
|
||
|
|
|
||
|
|
@Excel(name = "接种上午开始时间")
|
||
|
|
private String moStartTime;
|
||
|
|
|
||
|
|
@Excel(name = "接种上午结束时间")
|
||
|
|
private String moEndTime;
|
||
|
|
|
||
|
|
@Excel(name = "接种下午开始时间")
|
||
|
|
private String afStartTime;
|
||
|
|
|
||
|
|
@Excel(name = "接种下午结束时间")
|
||
|
|
private String afEndTime;
|
||
|
|
|
||
|
|
@Excel(name = "暂无疫苗(1:是;2:否)")
|
||
|
|
private Integer noAvailableVaccines;
|
||
|
|
|
||
|
|
@Excel(name = "咨询电话")
|
||
|
|
private String mobile;
|
||
|
|
|
||
|
|
@Excel(name = "接种点地址")
|
||
|
|
private String address;
|
||
|
|
|
||
|
|
@Excel(name = "经度")
|
||
|
|
private String longitude;
|
||
|
|
|
||
|
|
@Excel(name = "纬度")
|
||
|
|
private String latitude;
|
||
|
|
|
||
|
|
@Excel(name = "")
|
||
|
|
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;
|
||
|
|
|
||
|
|
|
||
|
|
}
|