自动化立体仓库 - WCS系统
#
luxiaotao1123
2022-12-20 c0cfe836fba8c4fd03b21ad66d77aa984c210117
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
package com.zy.common.service.erp.entity;
 
import lombok.Data;
 
/**
 * Created by vincent on 2022/12/8
 */
@Data
public class Voucher {
 
    private String VoucherID;
 
    private String MT;
 
    private String MaterialNO;
 
    private String CenterID;
 
    private String Plant;
 
    private String Loc;
 
    private String Batch;
 
    private Double TotalNum;
 
    private Integer TotalCount;
 
    private String AccDate;
 
    private String VBELN;
 
    private String Customer;
 
    private Double ExpectedWeight;
 
    private String Container;
 
    private String TruckNO;
 
    private String LastUpdatedDate;
 
    private Integer State;
 
}