李林
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
package com.chinaztt.mes.plan.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class OperationTaskProduceData {
 
    @ExcelProperty(value = "otc订单号")
    private String otcCustomerOrderNo;
 
    @ExcelProperty(value = "otc订单行号")
    private String otcLineNo;
    
    // @ExcelProperty(value = "合同产品规格型号")
    // private String customerPartSpec;
 
    @ExcelProperty(value = "段长")
    private BigDecimal qty;
 
    @ExcelProperty(value = "米标")
    private String meterMark;
 
    @ExcelProperty(value = "CRCC号")
    private String crccNumber;
 
    @ExcelProperty(value = "公司名称")
    private String company;
 
    @ExcelProperty(value = "成品规格型号")
    private String finishedProductSpecification;
 
    @ExcelProperty(value = "年月日")
    private String ymd;
 
    @ExcelProperty(value = "始端")
    private String begining;
 
    @ExcelProperty(value = "终端")
    private String ending;
 
    @ExcelProperty(value = "用途")
    private String purpose;
 
    @ExcelProperty(value = "自编号")
    private String selfNo;
 
    @ExcelProperty(value = "去向")
    private String direction;
 
    @ExcelProperty(value = "区间")
    private String section;
 
    @ExcelProperty(value = "印字")
    private String print;
 
    @ExcelProperty(value = "端别")
    private String endClassification;
 
    @ExcelProperty(value = "备注")
    private String orderUploadRemark;
}