yun-zuoyi
wynne1005 4 years ago
commit 80b5cca624

@ -424,6 +424,10 @@ public class MesWorkOrder extends BaseBean implements Serializable {
@ApiParam("模具编号集合") @ApiParam("模具编号集合")
private String mouldCodeList; private String mouldCodeList;
@Transient
@ApiParam("不良数量")
private Integer ngQty;

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

Loading…
Cancel
Save