|
@ -111,23 +111,23 @@ public class QualityOrderDetail extends BaseEntity |
|
|
|
|
|
|
|
|
/** 生产订单数 */ |
|
|
/** 生产订单数 */ |
|
|
@Excel(name = "生产订单数") |
|
|
@Excel(name = "生产订单数") |
|
|
private String makeTotal; |
|
|
private Integer makeTotal; |
|
|
|
|
|
|
|
|
/** 本次到货数量 */ |
|
|
/** 本次到货数量 */ |
|
|
@Excel(name = "本次到货数量") |
|
|
@Excel(name = "本次到货数量") |
|
|
private Long thisArrivedNum; |
|
|
private Integer thisArrivedNum; |
|
|
|
|
|
|
|
|
/** 品质已合格数 */ |
|
|
/** 品质已合格数 */ |
|
|
@Excel(name = "品质已合格数") |
|
|
@Excel(name = "品质已合格数") |
|
|
private Long qualityHasqualifiedNum; |
|
|
private Integer qualityHasqualifiedNum; |
|
|
|
|
|
|
|
|
/** 品质合格数 */ |
|
|
/** 品质合格数 */ |
|
|
@Excel(name = "品质合格数") |
|
|
@Excel(name = "品质合格数") |
|
|
private Long qualityQualifiedNum; |
|
|
private Integer qualityQualifiedNum; |
|
|
|
|
|
|
|
|
/** 品质不合格数 */ |
|
|
/** 品质不合格数 */ |
|
|
@Excel(name = "品质不合格数") |
|
|
@Excel(name = "品质不合格数") |
|
|
private Long qualityUnqualifiedNum; |
|
|
private Integer qualityUnqualifiedNum; |
|
|
|
|
|
|
|
|
public void setQualityOrderDetailId(Long qualityOrderDetailId) |
|
|
public void setQualityOrderDetailId(Long qualityOrderDetailId) |
|
|
{ |
|
|
{ |
|
@ -332,56 +332,50 @@ public class QualityOrderDetail extends BaseEntity |
|
|
this.materialProcessMethod = materialProcessMethod; |
|
|
this.materialProcessMethod = materialProcessMethod; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public String getMaterialProcessMethod() |
|
|
public String getMaterialProcessMethod() { |
|
|
{ |
|
|
|
|
|
return materialProcessMethod; |
|
|
return materialProcessMethod; |
|
|
} |
|
|
} |
|
|
public void setMakeTotal(String makeTotal) |
|
|
|
|
|
{ |
|
|
|
|
|
this.makeTotal = makeTotal; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public String getMakeTotal() |
|
|
public Integer getMakeTotal() { |
|
|
{ |
|
|
|
|
|
return makeTotal; |
|
|
return makeTotal; |
|
|
} |
|
|
} |
|
|
public void setThisArrivedNum(Long thisArrivedNum) |
|
|
|
|
|
{ |
|
|
public void setMakeTotal(Integer makeTotal) { |
|
|
this.thisArrivedNum = thisArrivedNum; |
|
|
this.makeTotal = makeTotal; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public Long getThisArrivedNum() |
|
|
public Integer getThisArrivedNum() { |
|
|
{ |
|
|
|
|
|
return thisArrivedNum; |
|
|
return thisArrivedNum; |
|
|
} |
|
|
} |
|
|
public void setQualityHasqualifiedNum(Long qualityHasqualifiedNum) |
|
|
|
|
|
{ |
|
|
public void setThisArrivedNum(Integer thisArrivedNum) { |
|
|
this.qualityHasqualifiedNum = qualityHasqualifiedNum; |
|
|
this.thisArrivedNum = thisArrivedNum; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public Long getQualityHasqualifiedNum() |
|
|
public Integer getQualityHasqualifiedNum() { |
|
|
{ |
|
|
|
|
|
return qualityHasqualifiedNum; |
|
|
return qualityHasqualifiedNum; |
|
|
} |
|
|
} |
|
|
public void setQualityQualifiedNum(Long qualityQualifiedNum) |
|
|
|
|
|
{ |
|
|
public void setQualityHasqualifiedNum(Integer qualityHasqualifiedNum) { |
|
|
this.qualityQualifiedNum = qualityQualifiedNum; |
|
|
this.qualityHasqualifiedNum = qualityHasqualifiedNum; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public Long getQualityQualifiedNum() |
|
|
public Integer getQualityQualifiedNum() { |
|
|
{ |
|
|
|
|
|
return qualityQualifiedNum; |
|
|
return qualityQualifiedNum; |
|
|
} |
|
|
} |
|
|
public void setQualityUnqualifiedNum(Long qualityUnqualifiedNum) |
|
|
|
|
|
{ |
|
|
public void setQualityQualifiedNum(Integer qualityQualifiedNum) { |
|
|
this.qualityUnqualifiedNum = qualityUnqualifiedNum; |
|
|
this.qualityQualifiedNum = qualityQualifiedNum; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public Long getQualityUnqualifiedNum() |
|
|
public Integer getQualityUnqualifiedNum() { |
|
|
{ |
|
|
|
|
|
return qualityUnqualifiedNum; |
|
|
return qualityUnqualifiedNum; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setQualityUnqualifiedNum(Integer qualityUnqualifiedNum) { |
|
|
|
|
|
this.qualityUnqualifiedNum = qualityUnqualifiedNum; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public String toString() { |
|
|
public String toString() { |
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
|