huminmin
2026-04-22 b7b7c0a641c7bf53d3d31449dc8c31efba58ea97
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
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;
 
}