自动化立体仓库 - WMS系统
zyx
2024-05-27 cd8ab30f720cd8ab32062024b00c7fe3294a56a4
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
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class ReportErpParam {
    private String 操作系统号;
    private String 操作单据;
    private String 操作类型;
    private String ddate;
    private String cWhCode;
    private String cDepCode;
    private String cOrderCode;
    private String cMaker;
    private String cHandler;
    private String cDefine14;
    private List<ChildInfo> children;
 
    @Data
    public static class ChildInfo{
        private String irowno;
        private String cInvCode;
        private String iQuantity;
        private String cBatch;
        private String iNum;
        private String iinvexchrate;
        private String bFree1;
        private String iPOsID;
        private String cOrderCode;
        private String ivouchrowno;
        private String Define22;
    }
}