|
|
@ -334,6 +334,18 @@ public class MesWorkOrder extends BaseBean implements Serializable {
|
|
|
|
@ApiParam("二检数量")
|
|
|
|
@ApiParam("二检数量")
|
|
|
|
private Integer secondInspectionQty;
|
|
|
|
private Integer secondInspectionQty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam("子零件")
|
|
|
|
|
|
|
|
private String itemPartNo;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam(value = "子零件数量", example = "0")
|
|
|
|
|
|
|
|
private Double itemQty = 0d;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam(value = "子零件总数", example = "0")
|
|
|
|
|
|
|
|
private Double itemQtyCount = 0d;
|
|
|
|
|
|
|
|
|
|
|
|
public double getQtyVal() {
|
|
|
|
public double getQtyVal() {
|
|
|
|
return this.qty == null ? 0.0d : this.qty;
|
|
|
|
return this.qty == null ? 0.0d : this.qty;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -366,4 +378,17 @@ public class MesWorkOrder extends BaseBean implements Serializable {
|
|
|
|
return this.approvalStatus == null ? 0 : this.approvalStatus;
|
|
|
|
return this.approvalStatus == null ? 0 : this.approvalStatus;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public MesWorkOrder(){}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public MesWorkOrder(String orderNo,String startTime,String workCenterCode,Double qty,
|
|
|
|
|
|
|
|
String partNo,String partNameRdd,String itemPartNo,Double itemQty){
|
|
|
|
|
|
|
|
this.orderNo = orderNo;
|
|
|
|
|
|
|
|
this.startTime = startTime;
|
|
|
|
|
|
|
|
this.workCenterCode = workCenterCode;
|
|
|
|
|
|
|
|
this.qty = qty;
|
|
|
|
|
|
|
|
this.partNo = partNo;
|
|
|
|
|
|
|
|
this.partNameRdd = partNameRdd;
|
|
|
|
|
|
|
|
this.itemPartNo = itemPartNo;
|
|
|
|
|
|
|
|
this.itemQty = itemQty;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|