增加数量处理方法

yun-zuoyi
贾文涛 5 years ago
parent 627e8ac215
commit 525cda2768

@ -170,6 +170,18 @@ public class MesPackage extends BaseBean implements Serializable {
public MesPackage() {
}
public double getQtyVal() {
return this.qty == null ? 0.0d : this.qty;
}
public double getQty2Val() {
return this.qty2 == null ? 0.0d : this.qty2;
}
public double getPackSpecQtyVal() {
return this.packSpecQty == null ? 0.0d : this.packSpecQty;
}
public MesPackage(String packageNo, String partNo, String partNameRdd, Double qty, Double packSpecQty) {
this.packageNo = packageNo;
this.partNo = partNo;

Loading…
Cancel
Save