自动化立体仓库 - WMS系统
zyx
2024-07-10 2cd1fab84d88a16063d5036e77d690e9709f5d68
src/main/java/com/zy/asrs/entity/param/MesPakinReportParam.java
@@ -7,12 +7,20 @@
    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
@@ -20,5 +28,11 @@
        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;
        }
    }
}