|
|
|
@ -70,7 +70,7 @@ public class BiModel implements Serializable {
|
|
|
|
|
private double unQualifiedRate = 0;
|
|
|
|
|
|
|
|
|
|
@ApiParam("目标合格率")
|
|
|
|
|
private double targetPassRate;
|
|
|
|
|
private double targetPassRate = 0;
|
|
|
|
|
|
|
|
|
|
@ApiParam("颜色标识")
|
|
|
|
|
private Integer colorFlag = 0;
|
|
|
|
@ -93,6 +93,9 @@ public class BiModel implements Serializable {
|
|
|
|
|
@ApiParam("末检")
|
|
|
|
|
private Integer endCheck;//首件、30中件、40末件
|
|
|
|
|
|
|
|
|
|
@ApiParam("质量状态")
|
|
|
|
|
private Integer qcStatus;
|
|
|
|
|
|
|
|
|
|
private double qty;
|
|
|
|
|
|
|
|
|
|
@ApiParam("比率")
|
|
|
|
@ -116,4 +119,10 @@ public class BiModel implements Serializable {
|
|
|
|
|
this.qty = qty;
|
|
|
|
|
this.partNo = partNo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BiModel(String workCellCode, String partNo, Integer qcStatus) {
|
|
|
|
|
this.workCellCode = workCellCode;
|
|
|
|
|
this.partNo = partNo;
|
|
|
|
|
this.qcStatus = qcStatus;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|