|
|
|
@ -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;
|
|
|
|
|