|
|
|
@ -110,4 +110,29 @@ public class QadBop implements Serializable {
|
|
|
|
|
@Column(name="CREATE_DATE_TIME")
|
|
|
|
|
@ApiParam("创建时间")
|
|
|
|
|
public String createDateTime;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("收货时是供应商编号,发运时是客户发往地")
|
|
|
|
|
public String inAddr;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("工厂代码")
|
|
|
|
|
public String inSite;
|
|
|
|
|
|
|
|
|
|
public QadBop(String bopCode, String bopDesc, String bopDomain, String parentPart, String parentReturnPart, String bopdwQty, String subBopCode, String subBopPart, String subItemPart, String subQty, String subUnit, String createDateTime, String inAddr, String inSite) {
|
|
|
|
|
this.bopCode = bopCode;
|
|
|
|
|
this.bopDesc = bopDesc;
|
|
|
|
|
this.bopDomain = bopDomain;
|
|
|
|
|
this.parentPart = parentPart;
|
|
|
|
|
this.parentReturnPart = parentReturnPart;
|
|
|
|
|
this.bopdwQty = bopdwQty;
|
|
|
|
|
this.subBopCode = subBopCode;
|
|
|
|
|
this.subBopPart = subBopPart;
|
|
|
|
|
this.subItemPart = subItemPart;
|
|
|
|
|
this.subQty = subQty;
|
|
|
|
|
this.subUnit = subUnit;
|
|
|
|
|
this.createDateTime = createDateTime;
|
|
|
|
|
this.inAddr = inAddr;
|
|
|
|
|
this.inSite = inSite;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|