|
|
|
@ -537,6 +537,32 @@ public class WmsStockSn extends BaseBean {
|
|
|
|
|
@ApiParam("原数量")
|
|
|
|
|
private Double srcQty;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("库位X")
|
|
|
|
|
private Integer x;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("库位Y")
|
|
|
|
|
private Integer y;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("库位Z")
|
|
|
|
|
private Integer z;
|
|
|
|
|
|
|
|
|
|
public WmsStockSn(String sn, String vendorNo, Integer snStatus, Integer qcStatus, Double qty, String partNo, String partNameRdd, String locateNo, Integer x, Integer y, Integer z) {
|
|
|
|
|
this.sn = sn;
|
|
|
|
|
this.vendorNo = vendorNo;
|
|
|
|
|
this.snStatus = snStatus;
|
|
|
|
|
this.qcStatus = qcStatus;
|
|
|
|
|
this.qty = qty;
|
|
|
|
|
this.partNo = partNo;
|
|
|
|
|
this.partNameRdd = partNameRdd;
|
|
|
|
|
this.locateNo = locateNo;
|
|
|
|
|
this.x = x;
|
|
|
|
|
this.y = y;
|
|
|
|
|
this.z = z;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsStockSn() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|