ICSRuternASN.java
528 Bytes
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
package com.huaheng.api.srm.domain;
import lombok.Data;
@Data
public class ICSRuternASN
{
    private static final long serialVersionUID = 1L;
    private String warehouseCode;
    //条码
    private String LotNo;
    private String Serial;
    //库位代码
    private String BinCode;
    //数量
    private Double LotQty;
    private String ReturnDoc;
    private Integer ReturnDocLine;
    //操作人
    private String User;
    private String MUSERName;
    //操作时间
    private String MTime;
}