|
|
@ -96,4 +96,36 @@ public class WmsStockQuan extends BaseBean {
|
|
|
|
@ColumnDefault("0")
|
|
|
|
@ColumnDefault("0")
|
|
|
|
@ApiParam(value = "锁定数量", example = "0")
|
|
|
|
@ApiParam(value = "锁定数量", example = "0")
|
|
|
|
private Double lockQty;
|
|
|
|
private Double lockQty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Double getQty() {
|
|
|
|
|
|
|
|
return this.qty == null ? 0 : this.qty;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Double getFailQty() {
|
|
|
|
|
|
|
|
return this.failQty == null ? 0 : this.failQty;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Double getHoldQty() {
|
|
|
|
|
|
|
|
return this.holdQty == null ? 0 : this.holdQty;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Double getQcQty() {
|
|
|
|
|
|
|
|
return this.qcQty == null ? 0 : this.qcQty;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Double getRinQty() {
|
|
|
|
|
|
|
|
return this.rinQty == null ? 0 : this.rinQty;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Double getFreezeQty() {
|
|
|
|
|
|
|
|
return this.freezeQty == null ? 0 : this.freezeQty;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Double getConsignQty() {
|
|
|
|
|
|
|
|
return this.consignQty == null ? 0 : this.consignQty;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Double getLockQty() {
|
|
|
|
|
|
|
|
return this.lockQty == null ? 0 : this.lockQty;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|