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;
|
}
|
}
|
}
|