|
|
@ -106,6 +106,9 @@ public class QualityOrderDetail extends BaseEntity |
|
|
|
@Excel(name = "物料描述") |
|
|
|
private String materialDescribe; |
|
|
|
|
|
|
|
//物料型号
|
|
|
|
private String materialModel; |
|
|
|
|
|
|
|
/** 物料加工方式 */ |
|
|
|
@Excel(name = "物料加工方式") |
|
|
|
private String materialProcessMethod; |
|
|
@ -121,13 +124,6 @@ public class QualityOrderDetail extends BaseEntity |
|
|
|
/** 生产完成数 */ |
|
|
|
private Integer makeCompletionNum; |
|
|
|
|
|
|
|
/** 实际到货数量 */ |
|
|
|
@Excel(name = "实际到货数量") |
|
|
|
private Integer actualArriveNum; |
|
|
|
|
|
|
|
/** 本次到货数量 */ |
|
|
|
@Excel(name = "本次到货数量") |
|
|
|
private Integer thisArrivedNum; |
|
|
|
|
|
|
|
/** 品质已合格数 */ |
|
|
|
@Excel(name = "品质已合格数") |
|
|
@ -141,13 +137,12 @@ public class QualityOrderDetail extends BaseEntity |
|
|
|
@Excel(name = "品质不合格数") |
|
|
|
private Integer qualityUnqualifiedNum; |
|
|
|
|
|
|
|
/** 委内已完成数 */ |
|
|
|
@Excel(name = "委内已完成数") |
|
|
|
private Integer makeInNum; |
|
|
|
//检验数
|
|
|
|
private int checkNum; |
|
|
|
|
|
|
|
//待审核数
|
|
|
|
private int pendingReviewNum; |
|
|
|
|
|
|
|
/** 委内加工费单价 */ |
|
|
|
private BigDecimal makeInUnitPrice; |
|
|
|
|
|
|
|
|
|
|
|
public void setQualityOrderDetailId(Long qualityOrderDetailId) |
|
|
@ -374,22 +369,6 @@ public class QualityOrderDetail extends BaseEntity |
|
|
|
this.makeCompletionNum = makeCompletionNum; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getActualArriveNum() { |
|
|
|
return actualArriveNum; |
|
|
|
} |
|
|
|
|
|
|
|
public void setActualArriveNum(Integer actualArriveNum) { |
|
|
|
this.actualArriveNum = actualArriveNum; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getThisArrivedNum() { |
|
|
|
return thisArrivedNum; |
|
|
|
} |
|
|
|
|
|
|
|
public void setThisArrivedNum(Integer thisArrivedNum) { |
|
|
|
this.thisArrivedNum = thisArrivedNum; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getQualityHasqualifiedNum() { |
|
|
|
return qualityHasqualifiedNum; |
|
|
|
} |
|
|
@ -414,28 +393,36 @@ public class QualityOrderDetail extends BaseEntity |
|
|
|
this.qualityUnqualifiedNum = qualityUnqualifiedNum; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getMakeInNum() { |
|
|
|
return makeInNum; |
|
|
|
public String getMaterialDeptType() { |
|
|
|
return materialDeptType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setMaterialDeptType(String materialDeptType) { |
|
|
|
this.materialDeptType = materialDeptType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setMakeInNum(Integer makeInNum) { |
|
|
|
this.makeInNum = makeInNum; |
|
|
|
public int getCheckNum() { |
|
|
|
return checkNum; |
|
|
|
} |
|
|
|
|
|
|
|
public BigDecimal getMakeInUnitPrice() { |
|
|
|
return makeInUnitPrice; |
|
|
|
public void setCheckNum(int checkNum) { |
|
|
|
this.checkNum = checkNum; |
|
|
|
} |
|
|
|
|
|
|
|
public void setMakeInUnitPrice(BigDecimal makeInUnitPrice) { |
|
|
|
this.makeInUnitPrice = makeInUnitPrice; |
|
|
|
public int getPendingReviewNum() { |
|
|
|
return pendingReviewNum; |
|
|
|
} |
|
|
|
|
|
|
|
public String getMaterialDeptType() { |
|
|
|
return materialDeptType; |
|
|
|
public void setPendingReviewNum(int pendingReviewNum) { |
|
|
|
this.pendingReviewNum = pendingReviewNum; |
|
|
|
} |
|
|
|
|
|
|
|
public void setMaterialDeptType(String materialDeptType) { |
|
|
|
this.materialDeptType = materialDeptType; |
|
|
|
public String getMaterialModel() { |
|
|
|
return materialModel; |
|
|
|
} |
|
|
|
|
|
|
|
public void setMaterialModel(String materialModel) { |
|
|
|
this.materialModel = materialModel; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
@ -466,14 +453,10 @@ public class QualityOrderDetail extends BaseEntity |
|
|
|
.append("materialProcessMethod", getMaterialProcessMethod()) |
|
|
|
.append("materialDeptType",getMaterialDeptType()) |
|
|
|
.append("makeTotal", getMakeTotal()) |
|
|
|
.append("actualArriveNum", getActualArriveNum()) |
|
|
|
.append("thisArrivedNum", getThisArrivedNum()) |
|
|
|
.append("qualityHasqualifiedNum", getQualityHasqualifiedNum()) |
|
|
|
.append("qualityQualifiedNum", getQualityQualifiedNum()) |
|
|
|
.append("qualityUnqualifiedNum", getQualityUnqualifiedNum()) |
|
|
|
.append("makeInNum",getMakeInNum()) |
|
|
|
.append("makeCompletionNum",getMakeCompletionNum()) |
|
|
|
.append("makeInUnitPrice",getMakeInUnitPrice()) |
|
|
|
.append("remark", getRemark()) |
|
|
|
.append("createBy", getCreateBy()) |
|
|
|
.append("createTime", getCreateTime()) |
|
|
|