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