package com.ruoyi.sales.vo;
|
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import com.ruoyi.sales.pojo.SalesLedgerProduct;
|
import lombok.Data;
|
|
import java.util.List;
|
|
@Data
|
public class ShippingNoteVo {
|
@Excel(name = "客户名称", cellType = Excel.ColumnType.STRING)
|
private String customerName;
|
|
@Excel(name = "送货地址", cellType = Excel.ColumnType.STRING)
|
private String companyAddress;
|
|
@Excel(name = "联系人", cellType = Excel.ColumnType.STRING)
|
private String contactPerson;
|
|
@Excel(name = "联系电话", cellType = Excel.ColumnType.STRING)
|
private String contactPhone;
|
|
@Excel(name = "公司电话", cellType = Excel.ColumnType.STRING)
|
private String companyPhone;
|
|
@Excel(name = "单据编号", cellType = Excel.ColumnType.STRING)
|
private String salesContractNo;
|
|
@Excel(name = "送货日期", cellType = Excel.ColumnType.STRING)
|
private String deliveryDate;
|
|
@Excel(name = "产品信息", type = Excel.Type.EXPORT)
|
private List<SalesLedgerProduct> products;
|
|
}
|