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.
47 lines
968 B
47 lines
968 B
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 = "疫苗接种点名称")
|
|
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 = "暂无疫苗", replace = {"是_1","否_2"})
|
|
private String noAvailableVaccines;
|
|
|
|
@Excel(name = "咨询电话")
|
|
private String mobile;
|
|
|
|
@Excel(name = "接种点地址")
|
|
private String address;
|
|
|
|
|
|
|
|
|
|
}
|
|
|