DqPersonelExcelIn.java 949 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
package io.hmit.common.utils.easyExcel;

import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;


@Data
public class DqPersonelExcelIn {

    /** 姓名 */
    @ExcelProperty(index = 4)
    private String name;

    /** 姓名 */
    @ExcelProperty(index = 5)
    private String idcardType;

    /** 身份证 */
    @ExcelProperty(index = 7)
    private String idcard;

    /** 手机号  */
    @ExcelProperty(index = 8)
    private String mobile;

    /** 社区 */
    @ExcelProperty(index = 12)
    private String community;

    /**  详细地址 */
    @ExcelProperty(index = 13)
    private String address;

    /** 类型 1:密接   2:次密接,3:中高风险地区所在城市漫出人员 */
    @ExcelProperty(index = 15)
    private String type;


    /** 卸船时间字符串, yyyyMMddHHmmss */
//    @ExcelProperty("卸船时间")
//    @DateTimeFormat("yyyyMMddHHmmss")
//    private Date wharfUnloadTime;


}