自动化立体仓库 - WMS系统
1
zhang
昨天 ad9e95343ccec55d45d73d9e814b7c68ac38e9ca
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
package com.zy.asrs.importexcle;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
/**
 * @author pang.jiabao
 * @description 导入订单dto
 * @createDate 2024/9/2 9:55
 */
@Data
public class ImportReviewDto {
 
    private Long orderId;
 
    @ExcelProperty(value = "单据编号", index = 0)
    private String column1;
 
    @ExcelProperty(value = "规格", index = 1)
    private String column2;
 
 
    @ExcelProperty(value = "批次号", index = 2)
    private String column3;
 
 
    @ExcelProperty(value = "出库数量", index = 3)
    private Double column4;
 
 
    @ExcelProperty(value = "物料编号", index = 4)
    private String column5;
 
 
    @ExcelProperty(value = "物料名称", index = 5)
    private String column6;
 
 
 
 
    @ExcelProperty(value = "单位", index = 6)
    private String column7;
 
    @ExcelProperty(value = "品级", index = 7)
    private String column8;
 
 
    @ExcelProperty(value = "卷号", index = 8)
    private String column9;
 
 
    @ExcelProperty(value = "出库日期", index = 9)
    private String column10;
 
}