自动化立体仓库 - WMS系统
pang.jiabao
2025-04-17 391dd89a6583e0f1eceaf1297fd852e3da32bf68
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
package com.zy.asrs.entity.result;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
/**
 * @author pang.jiabao
 * @description 拣货单,销售发货用excel导出模板
 * @createDate 2025/2/17 15:47
 */
@Data
public class PakoutExcelVo {
 
    @ExcelProperty(value = "牌号")
    private String brand;
 
    @ExcelProperty(value = "批号")
    private String batch;
 
    @ExcelProperty(value = "包装号")
    private Integer packageNo;
 
    @ExcelProperty(value = "生产日期")
    private String proDate;
 
    @ExcelProperty(value = "重量KG")
    private Double anfme;
 
    @ExcelProperty(value = "熔指,g/10min")
    private Double fingerMelting;
 
    @ExcelProperty(value = "熔点,℃")
    private Double fusingPoint;
 
    @ExcelProperty(value = "黄度")
    private Double yellowness;
 
    @ExcelProperty(value = "不透明度,%")
    private Double opacity;
 
    @ExcelProperty(value = "包装类型")
    private String packageType;
 
    @ExcelProperty(value = "托盘类型")
    private String zpalletType;
 
    @ExcelProperty(value = "质量状态")
    private String massState;
 
    @ExcelProperty(value = "库位")
    private String locNo;
 
}