自动化立体仓库 - WMS系统
zyx
2024-07-04 13c2be4774f4afbb34fa70be97c96802f07b15ff
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
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class MesOrderReportParam {
    //编码
    private String code;
    //备注
    private String remark;
    private List<TransferOrderItem> transferOrderItems;
 
    @Data
    public static class TransferOrderItem{
        private List<InventoryDetail> inventoryDetails;
        //行备注 单据号
        private String remark;
        //接收仓位
        private String targetLocationCode;
 
        @Data
        public static class InventoryDetail{
            private Amount amount;
            private BizKey bizKey;
            //发出仓位
            private String locationCode;
            //物料编码
            private String materialCode;
            //质量状态
            private Integer qcStatus;
            //仓储状态
            private Integer storageStatus;
 
            @Data
            public static class Amount{
                //数量
                private Double amount;
                //单位编码
                private String unitCode;
                //单位名称 二选一
                private String unitName;
            }
 
            @Data
            public static class BizKey{
                //批次
                private String batchNo;
            }
        }
    }
}