自动化立体仓库 - WMS系统
#
whycq
2024-12-27 badbba04e6e587c2bcfcbc43e361f5059af9e735
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
package com.zy.asrs.entity.result;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
/**
 * Created by vincent on 2021/4/13
 */
@Data
public class OrderGiftProofreadingVo {
 
    @ExcelProperty(value = "订单号")
    private String orderNo;
    @ExcelProperty(value = "规格")
    private String matnr;
    @ExcelProperty(value = "箱号")
    private String batch;
    @ExcelProperty(value = "卷号")
    private String model="";
    @ExcelProperty(value = "长度")
    private Double price;
    @ExcelProperty(value = "净重")
    private Double weight;
    @ExcelProperty(value = "毛重")
    private Double volume;
    @ExcelProperty(value = "接头")
    private String specs;
    @ExcelProperty(value = "备注")
    private String memo="";
 
    public OrderGiftProofreadingVo() {
    }
 
    public OrderGiftProofreadingVo(String orderNo, String matnr, String batch, String model, Double price, Double weight, Double volume, String memo) {
        this.orderNo = orderNo;
        this.matnr = matnr;
        this.batch = batch;
        this.model = model;
        this.price = price;
        this.weight = weight;
        this.volume = volume;
        this.memo = memo;
    }
}