罗元桥
2021-08-30 eda58e0e6d4abdd2b060e28867d103045845aa69
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/vaccines/ComMngVaccinesEnrollExcelVo.java
@@ -1,34 +1,35 @@
package com.panzhihua.common.model.vos.vaccines;
import java.util.Date;
import com.alibaba.excel.annotation.ExcelProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.util.Date;
import lombok.Data;
@Data
public class ComMngVaccinesEnrollExcelVo {
    @ExcelProperty(value = "姓名" ,index = 0)
    @ExcelProperty(value = "姓名", index = 0)
    private String name;
    @ExcelProperty(value = "性别" ,index = 1)
    @ExcelProperty(value = "性别", index = 1)
    private String sex;
    @ExcelProperty(value = "年龄" ,index = 2)
    @ExcelProperty(value = "年龄", index = 2)
    private Integer age;
    @ExcelProperty(value = "手机号" ,index = 3)
    @ExcelProperty(value = "手机号", index = 3)
    private String phone;
    @ExcelProperty(value = "身份证号" ,index = 4)
    @ExcelProperty(value = "身份证号", index = 4)
    private String idCard;
    @ExcelProperty(value = "登记时间" ,index = 5)
    @ExcelProperty(value = "登记时间", index = 5)
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date createAt;
    @ExcelProperty(value = "疫苗分类" ,index = 6)
    @ExcelProperty(value = "疫苗分类", index = 6)
    private String vaccines;
}