|
|
|
@ -33,7 +33,7 @@ public class MesWorkOrder extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Column(name="PART_NO")
|
|
|
|
|
@ApiParam("物料号")
|
|
|
|
|
private Integer partNo;
|
|
|
|
|
private String partNo;
|
|
|
|
|
|
|
|
|
|
@Column(name="PROD_CFG_CODE")
|
|
|
|
|
@ApiParam("产品配置代码")
|
|
|
|
@ -110,4 +110,32 @@ public class MesWorkOrder extends BaseBean {
|
|
|
|
|
@Column(name="MEMO")
|
|
|
|
|
@ApiParam("备注")
|
|
|
|
|
private String memo;
|
|
|
|
|
|
|
|
|
|
public double getQtyVal() {
|
|
|
|
|
return this.qty == null ? 0.0d : this.qty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public double getCompleteQtyVal() {
|
|
|
|
|
return this.completeQty == null ? 0.0d : this.completeQty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public double getRepairQtyVal() {
|
|
|
|
|
return this.repairQty == null ? 0.0d : this.repairQty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public double getScrapQtyVal() {
|
|
|
|
|
return this.scrapQty == null ? 0.0d : this.scrapQty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public double getSeqVal() {
|
|
|
|
|
return this.seq == null ? 0.0d : this.seq;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getWorkOrderStatusVal() {
|
|
|
|
|
return this.workOrderStatus == null ? 0 : this.workOrderStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getWorkOrderTypeVal() {
|
|
|
|
|
return this.workOrderType == null ? 0 : this.workOrderType;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|