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
| package com.zy.asrs.entity;
|
| import com.alibaba.excel.annotation.ExcelProperty;
| import lombok.Data;
|
| import java.io.Serializable;
|
| @Data
| public class OrderDetlExcelVo implements Serializable {
|
| private static final long serialVersionUID = 1L;
|
| @ExcelProperty("单据编号")
| private String orderNo;
|
| @ExcelProperty("数量")
| private Double anfme;
|
| @ExcelProperty("作业数量")
| private Double workQty;
|
| @ExcelProperty("完成数量")
| private Double qty;
|
| @ExcelProperty("商品编码")
| private String matnr;
|
| @ExcelProperty("商品名称")
| private String maktx;
|
| @ExcelProperty("规格")
| private String specs;
|
| @ExcelProperty("重量")
| private Double weight;
|
| @ExcelProperty("货主ID")
| private Integer owner;
|
| @ExcelProperty("货物形态ID")
| private Integer payment;
|
| }
|
|