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