|
|
|
@ -67,6 +67,10 @@ public class MesProcessBom extends BaseBean {
|
|
|
|
|
@ApiParam(value = "子零件数量", example = "0")
|
|
|
|
|
private Double qty;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "绑定数量")
|
|
|
|
|
private Double boundQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_REPEAT")
|
|
|
|
|
@ApiParam(value = "是否可重复")
|
|
|
|
|
private Integer isRepeat;
|
|
|
|
@ -99,6 +103,9 @@ public class MesProcessBom extends BaseBean {
|
|
|
|
|
@ApiParam("产品条码")
|
|
|
|
|
private String serialNumber;
|
|
|
|
|
|
|
|
|
|
public double getBoundQtyVal() {
|
|
|
|
|
return this.boundQty == null ? 0.0d : this.boundQty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public double getQtyVal() {
|
|
|
|
|
return this.qty == null ? 0.0d : this.qty;
|
|
|
|
|