李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package com.chinaztt.mes.warehouse.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @Author: jipf
 * @Date: 2020-11-30 9:30
 */
@Data
public class EscortDetailData {
 
    @ExcelProperty("押运单号")
    private String escortNo;
 
    @ExcelProperty(value = "押运单状态")
    private String status;
 
    @ExcelProperty(value = "客户订单号")
    private String customerOrderNo;
 
    @ExcelProperty(value = "客户名称")
    private String customerName;
 
    @ExcelProperty(value = "零件批号")
    private String partBatchNo;
 
    @ExcelProperty(value = "零件编号")
    private String partNo;
    @ExcelProperty(value = "零件名称")
    private String partName;
    @ExcelProperty(value = "本次发货数量")
    private BigDecimal deliveryQty;
    @ExcelProperty(value = "预留数量")
    private BigDecimal reservedQuantity;
    @ExcelProperty(value = "已发货数量")
    private BigDecimal deliveredQuantity;
    @ExcelProperty(value = "退货数量")
    private BigDecimal sendBackQuantity;
 
 
 
//    @ExcelProperty(value = "物流公司")
//    private String partBatchNo;
//    @ExcelProperty(value = "发货时间")
//    private Long customerOrderId;
//    @ExcelProperty(value = "合同号")
//    private Long stockId;
//    @ExcelProperty(value = "客户")
//    private Long locationId;
//    @ExcelProperty(value = "工程名称")
//    private String escortNo;
//    @ExcelProperty(value = "发货长度")
//    private String status;
//    @ExcelProperty(value = "发货净重")
//    private String systemNo;
//    @ExcelProperty(value = "发货毛重")
//    private String partUnit;
//    @ExcelProperty(value = "公司名称")
//    private String partUnit;
//    @ExcelProperty(value = "联系人")
//    private String partUnit;
//
//    @ExcelProperty(value = "电话")
//    private String partUnit;
//    @ExcelProperty(value = "交货地址")
//    private String partUnit;
//    @ExcelProperty(value = "发货备注")
//    private String partUnit;
//
 
 
 
 
 
 
 
 
}