|
|
|
@ -88,6 +88,15 @@ public class QcCheckDataModel {
|
|
|
|
|
@ApiParam(value = "修改日期")
|
|
|
|
|
private String modifyDatetime;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "工单开始时间")
|
|
|
|
|
private String startTime;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "工单结束时间")
|
|
|
|
|
private String endTime;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "检测时间")
|
|
|
|
|
private String checkTime;
|
|
|
|
|
|
|
|
|
|
public QcCheckDataModel() {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
@ -121,4 +130,44 @@ public class QcCheckDataModel {
|
|
|
|
|
this.modifyUser = modifyUser;
|
|
|
|
|
this.modifyDatetime = modifyDatetime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public QcCheckDataModel(Long id, String organizeCode, String createUser, String createDatetime, String partNo, String workCenterCode
|
|
|
|
|
, String workCellCode, String partName, String modifyUser, String modifyDatetime, String startTime, String endTime) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.organizeCode = organizeCode;
|
|
|
|
|
this.createUser = createUser;
|
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
|
this.partNo = partNo;
|
|
|
|
|
this.workCenterCode = workCenterCode;
|
|
|
|
|
this.workCellCode = workCellCode;
|
|
|
|
|
this.partName = partName;
|
|
|
|
|
this.modifyUser = modifyUser;
|
|
|
|
|
this.modifyDatetime = modifyDatetime;
|
|
|
|
|
this.startTime = startTime;
|
|
|
|
|
this.endTime = endTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public QcCheckDataModel(Long id, String organizeCode, String createUser, String createDatetime, Integer checkType) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.organizeCode = organizeCode;
|
|
|
|
|
this.createUser = createUser;
|
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
|
this.checkType = checkType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public QcCheckDataModel(Long id, String organizeCode, String createUser, String createDatetime, Integer checkType, String checkItem, String checkStandard, String checkGuide
|
|
|
|
|
, String checkFrequency, String checkValue, String checkResult, String sn) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.organizeCode = organizeCode;
|
|
|
|
|
this.createUser = createUser;
|
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
|
this.checkType = checkType;
|
|
|
|
|
this.checkItem = checkItem;
|
|
|
|
|
this.checkStandard = checkStandard;
|
|
|
|
|
this.checkGuide = checkGuide;
|
|
|
|
|
this.checkFrequency = checkFrequency;
|
|
|
|
|
this.checkValue = checkValue;
|
|
|
|
|
this.checkResult = checkResult;
|
|
|
|
|
this.sn = sn;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|