43 lines
818 B
Java
43 lines
818 B
Java
package com.youchain.businessdata.inputJson;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
@Data
|
|
public class IRkConfirm {
|
|
String mo;
|
|
/**物料序号*/
|
|
Long itemId;
|
|
/**物料号*/
|
|
String itemCode;
|
|
|
|
/**容器序号*/
|
|
Long stockId;
|
|
/**容器号*/
|
|
String stockCode;
|
|
|
|
/**数量*/
|
|
double qty;
|
|
|
|
/**批次号*/
|
|
String pch;
|
|
|
|
/**厂家编号*/
|
|
String cjbh;
|
|
|
|
public IRkConfirm(String mo, Long itemId, String itemCode, Long stockId, String stockCode, double qty, String pch, String cjbh) {
|
|
this.mo = mo;
|
|
this.itemId = itemId;
|
|
this.itemCode = itemCode;
|
|
this.stockId = stockId;
|
|
this.stockCode = stockCode;
|
|
this.qty = qty;
|
|
this.pch = pch;
|
|
this.cjbh = cjbh;
|
|
}
|
|
public IRkConfirm(){
|
|
|
|
}
|
|
}
|