|
|
|
@ -82,11 +82,17 @@ public class QcCheckDataModel {
|
|
|
|
|
@ApiParam("物料名称")
|
|
|
|
|
private String partName;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "修改人")
|
|
|
|
|
private String modifyUser;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "修改日期")
|
|
|
|
|
private String modifyDatetime;
|
|
|
|
|
|
|
|
|
|
public QcCheckDataModel() {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public QcCheckDataModel(Long id, String organizeCode, String createUser, String createDatetime, String checkId, String partNo, String workCenterCode, String workCellCode, Integer checkType, String checkItem, String checkStandard, String checkGuide, String checkFrequency, String checkValue, String checkResult, String sn, Integer qty, String memo, String orderNo, String custCode, String shiftCode, String shiftGroupName, String squadLeader, String workCellName, String partName) {
|
|
|
|
|
public QcCheckDataModel(Long id, String organizeCode, String createUser, String createDatetime, String checkId, String partNo, String workCenterCode, String workCellCode, Integer checkType, String checkItem, String checkStandard, String checkGuide, String checkFrequency, String checkValue, String checkResult, String sn, Integer qty, String memo, String orderNo, String custCode, String shiftCode, String shiftGroupName, String squadLeader, String workCellName, String partName, String modifyUser, String modifyDatetime) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.organizeCode = organizeCode;
|
|
|
|
|
this.createUser = createUser;
|
|
|
|
@ -112,5 +118,7 @@ public class QcCheckDataModel {
|
|
|
|
|
this.squadLeader = squadLeader;
|
|
|
|
|
this.workCellName = workCellName;
|
|
|
|
|
this.partName = partName;
|
|
|
|
|
this.modifyUser = modifyUser;
|
|
|
|
|
this.modifyDatetime = modifyDatetime;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|