自动化立体仓库 - WMS系统
zyx
2024-07-24 4d300a00081d7b5916c41162075bdd79851a8fcc
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
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
/**
 * MES入库上报参数
 */
@Data
public class MesPakinReportParam {
    private String bizType;
    private String inboundOrderCode;
    private String remark;
    private InventoryAttr inventoryAttr;
    private NoQrCodeExecAmount noQrCodeExecAmount;
 
    @Data
    public static class InventoryAttr{
        private String batchNo;
        private String materialCode;
        private String storageLocationCode;
 
        public InventoryAttr(String batchNo,String materialCode,String storageLocationCode){
            this.batchNo = batchNo;
            this.materialCode = materialCode;
            this.storageLocationCode = storageLocationCode;
        }
    }
 
    @Data
    public static class NoQrCodeExecAmount{
        private Double amount;
        private String unitName;
        private String unitCode;
 
        public NoQrCodeExecAmount(Double amount, String unitName, String unitCode) {
            this.amount = amount;
            this.unitName = unitName;
            this.unitCode = unitCode;
        }
    }
}