|
|
|
@ -57,10 +57,18 @@ public class WmsMoveDetails extends BaseBean {
|
|
|
|
|
@ApiParam(value = "处理数量", example = "0")
|
|
|
|
|
public Double transQty;
|
|
|
|
|
|
|
|
|
|
public Double getTransQty(){
|
|
|
|
|
return this.transQty == null ? 0 : this.transQty.doubleValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name="REJECT_QTY")
|
|
|
|
|
@ApiParam(value = "不合格处理数量", example = "0")
|
|
|
|
|
public Double rejectQty;
|
|
|
|
|
|
|
|
|
|
public Double getRejectQty(){
|
|
|
|
|
return this.rejectQty == null ? 0 : this.rejectQty.doubleValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name="UNIT")
|
|
|
|
|
@ApiParam("单位")
|
|
|
|
|
public String unit;
|
|
|
|
|