|
|
|
@ -30,10 +30,12 @@ public class QcOrderCheckDataDetailModel {
|
|
|
|
|
|
|
|
|
|
private Integer checkResult;
|
|
|
|
|
|
|
|
|
|
private String serialNumber;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public QcOrderCheckDataDetailModel(Integer checkType, String checkItem, String checkStandard, Integer checkCount,
|
|
|
|
|
Integer isConcession, Integer isKeyCheckItem, Double max, Double min,
|
|
|
|
|
String checkValue, Integer checkResult) {
|
|
|
|
|
String checkValue, Integer checkResult, String serialNumber) {
|
|
|
|
|
this.checkType = checkType;
|
|
|
|
|
this.checkItem = checkItem;
|
|
|
|
|
this.checkStandard = checkStandard;
|
|
|
|
@ -44,5 +46,6 @@ public class QcOrderCheckDataDetailModel {
|
|
|
|
|
this.min = min;
|
|
|
|
|
this.checkValue = checkValue;
|
|
|
|
|
this.checkResult = checkResult;
|
|
|
|
|
this.serialNumber = serialNumber;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|