From 11adb5ff0908afc3098cf462742dee066ed3fab9 Mon Sep 17 00:00:00 2001 From: "joke.wang" Date: Thu, 9 Apr 2020 20:23:03 +0800 Subject: [PATCH] =?UTF-8?q?[=E9=BA=A6=E6=A0=BC=E7=BA=B3=E9=97=AE=E9=A2=98?= =?UTF-8?q?=EF=BC=9A111=20=E6=A3=80=E6=B5=8B=E9=A1=B9=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E6=8A=A5=E8=A1=A8]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../i3plus/pojo/mes/model/QcCheckDataModel.java | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/modules/i3plus-pojo-mes/src/main/java/cn/estsh/i3plus/pojo/mes/model/QcCheckDataModel.java b/modules/i3plus-pojo-mes/src/main/java/cn/estsh/i3plus/pojo/mes/model/QcCheckDataModel.java index 1d8e6e8..e568519 100644 --- a/modules/i3plus-pojo-mes/src/main/java/cn/estsh/i3plus/pojo/mes/model/QcCheckDataModel.java +++ b/modules/i3plus-pojo-mes/src/main/java/cn/estsh/i3plus/pojo/mes/model/QcCheckDataModel.java @@ -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; + } }