Merge branch 'dev' of i3-IMPP/i3plus-pojo into test

yun-zuoyi
jenkins 6 years ago committed by nancy.li
commit 68b650ab81

@ -14,9 +14,22 @@ public class WmsPartQtyDto {
@ApiParam(value = "物料编码")
private String partNo;
@ApiParam(value = "应收数量")
private String qty;
private Double qty;
@ApiParam(value = "实收数量")
private String rcQty;
private Double rcQty;
@ApiParam(value = "待收数量")
private String dueQty;
private Double dueQty;
public Double getQty() {
return qty == null? 0.0:qty;
}
public Double getRcQty() {
return rcQty == null? 0.0:qty;
}
public Double getDueQty() {
return dueQty == null? 0.0:qty;
}
}

Loading…
Cancel
Save