PensionConsigneeExcel.java 1.11 KB
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.modules.serviceOrder.excel;

import cn.afterturn.easypoi.excel.annotation.Excel;
import lombok.Data;

import java.util.Date;

/**
 * 
 *
 * @author zsh 408538940@qq.com
 * @since 1.0.0 2021-05-06
 */
@Data
public class PensionConsigneeExcel {
    @Excel(name = "")
    private Long id;
    @Excel(name = "用户ID")
    private Long userId;
    @Excel(name = "收货人姓名")
    private String consigneeName;
    @Excel(name = "收货人电话")
    private String consigneeMobile;
    @Excel(name = "省份")
    private String consigneeProvince;
    @Excel(name = "城市")
    private String consigneeCity;
    @Excel(name = "区/县")
    private String consigneeDistrict;
    @Excel(name = "详细地址")
    private String consigneeAddress;
    @Excel(name = "邮编")
    private String consigneeZip;
    @Excel(name = "是否为默认地址")
    private Integer ifDefault;
    @Excel(name = "状态")
    private Integer status;
    @Excel(name = "备注")
    private String remark;
    @Excel(name = "创建时间")
    private Date createDate;
    @Excel(name = "更新时间")
    private Date updateDate;

}