package com.zy.asrs.entity.param;
|
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* 采购入库上报参数
|
*/
|
@Data
|
public class MesBuyPakinReportParam {
|
//采购订单编码
|
private String code;
|
private List<Iteam> iteam;
|
|
@Data
|
public static class Iteam{
|
//物料编号
|
private String materialCode;
|
//批次号
|
private String batchNo;
|
//⼆维码
|
private String qrCode;
|
//采购订单⾏号
|
private String lineNo;
|
//⼊库数量
|
private Double amount;
|
//备注
|
private String remark;
|
//单位名称
|
private String unit;
|
//供应商编号
|
private String supplierCode;
|
//⼊库位置
|
private String storageLocationCode;
|
|
public Iteam(String materialCode, String batchNo, String qrCode, String lineNo, Double amount, String remark, String supplierCode, String storageLocationCode) {
|
this.materialCode = materialCode;
|
this.batchNo = batchNo;
|
this.qrCode = qrCode;
|
this.lineNo = lineNo;
|
this.amount = amount;
|
this.remark = remark;
|
this.supplierCode = supplierCode;
|
this.storageLocationCode = storageLocationCode;
|
}
|
|
public Iteam(){
|
|
}
|
}
|
|
}
|