自动化立体仓库 - WMS系统
*
lsh
15 小时以前 33884a1e6e3126983ae944fff749fe6f9271c404
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
package com.zy.asrs.entity.result;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
public class OrderPakoutDetailVo {
    private Long id;
    private String itemName;
    private String matnr;
    private String batch;
    private String model;
    private String origin;
    private Integer danger;
    private Integer status;
    private String specs;
    private String brand;
    private BigDecimal price;
    private BigDecimal weight;
    private BigDecimal roughWeight;
    private BigDecimal volume;
    private BigDecimal anfme;
    private BigDecimal qty;
    private BigDecimal units;
    private BigDecimal safeQty;
    private BigDecimal workQty;
    private Long orderId;
    private String orderNo;
    private String maktx;
    private String color;
    private String unit;
    private String sku;
    private String barcode;
    private String manu;
    private String manuDate;
    private String itemNum;
    private BigDecimal length;
    private String threeCode;
    private String supp;
    private String suppCode;
    private Integer beBatch;
    private String deadTime;
    private Integer deadWarn;
    private Integer source;
    private Integer inspect;
    private Integer tkType;
    private Long rollUp;
    private Long createBy;
    private Date createTime;
    private Long updateBy;
    private Date updateTime;
    private String memo;
 
    // getter和setter方法
}