|
|
@ -90,4 +90,12 @@ public class WmsBom extends BaseBean {
|
|
|
|
public Double getItemQty() {
|
|
|
|
public Double getItemQty() {
|
|
|
|
return this.itemQty == null ? 0 : this.itemQty.doubleValue();
|
|
|
|
return this.itemQty == null ? 0 : this.itemQty.doubleValue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public WmsBom(){}
|
|
|
|
|
|
|
|
public WmsBom(String itemPartNo, String itemPartNam, String itemUnit, String bomNum) {
|
|
|
|
|
|
|
|
this.itemPartNo = itemPartNo;
|
|
|
|
|
|
|
|
this.itemPartNam = itemPartNam;
|
|
|
|
|
|
|
|
this.itemUnit = itemUnit;
|
|
|
|
|
|
|
|
this.bomNum = bomNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|