From 02ac595c82143575fc8bb4468d288d7bb3a5c975 Mon Sep 17 00:00:00 2001 From: jun Date: Mon, 8 Jul 2024 14:06:29 +0800 Subject: [PATCH] =?UTF-8?q?41806=20=E7=BB=84=E4=BB=B6=E8=BF=94=E5=B7=A5?= =?UTF-8?q?=E4=BD=9C=E4=B8=9A--=E8=BF=94=E5=B7=A5=E5=8D=95=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E9=A1=B5=E9=9D=A2=EF=BC=8C=E5=A2=9E=E5=8A=A0=E4=B8=80?= =?UTF-8?q?=E5=88=97=E2=80=9C=E8=B4=A3=E4=BB=BB=E4=BA=BA=E2=80=9D=EF=BC=8C?= =?UTF-8?q?=E4=BB=8ENC=E5=A4=84=E7=90=86=E9=80=89=E6=8B=A9=E7=9A=84?= =?UTF-8?q?=E8=B4=A3=E4=BB=BB=E4=BA=BA=E5=8F=96=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mes/pcn/apiservice/serviceimpl/busi/MesNcProcessingService.java | 1 + .../estsh/i3plus/ext/mes/pcn/pojo/model/MesNcProcessingInputModel.java | 3 +++ 2 files changed, 4 insertions(+) diff --git a/modules/i3plus-ext-mes-pcn-apiservice/src/main/java/cn/estsh/i3plus/ext/mes/pcn/apiservice/serviceimpl/busi/MesNcProcessingService.java b/modules/i3plus-ext-mes-pcn-apiservice/src/main/java/cn/estsh/i3plus/ext/mes/pcn/apiservice/serviceimpl/busi/MesNcProcessingService.java index b51091f..179fc5c 100644 --- a/modules/i3plus-ext-mes-pcn-apiservice/src/main/java/cn/estsh/i3plus/ext/mes/pcn/apiservice/serviceimpl/busi/MesNcProcessingService.java +++ b/modules/i3plus-ext-mes-pcn-apiservice/src/main/java/cn/estsh/i3plus/ext/mes/pcn/apiservice/serviceimpl/busi/MesNcProcessingService.java @@ -365,6 +365,7 @@ public class MesNcProcessingService implements IMesNcProcessingService { reworkTask.setPartNo(model.getPartInspection().getPartNo()); reworkTask.setPartInspectionId(model.getPartInspection().getId()); reworkTask.setOrganizeCode(org); + reworkTask.setResponsibleParty(model.getOnlyPerson()); reworkTask.setType(model.getPartInspection().getSourceType()); ConvertBean.serviceModelInitialize(reworkTask, model.getPartInspection().getModifyUser()); reworkTaskRepository.save(reworkTask); diff --git a/modules/i3plus-ext-mes-pcn-pojo/src/main/java/cn/estsh/i3plus/ext/mes/pcn/pojo/model/MesNcProcessingInputModel.java b/modules/i3plus-ext-mes-pcn-pojo/src/main/java/cn/estsh/i3plus/ext/mes/pcn/pojo/model/MesNcProcessingInputModel.java index d05122d..0d8dae0 100644 --- a/modules/i3plus-ext-mes-pcn-pojo/src/main/java/cn/estsh/i3plus/ext/mes/pcn/pojo/model/MesNcProcessingInputModel.java +++ b/modules/i3plus-ext-mes-pcn-pojo/src/main/java/cn/estsh/i3plus/ext/mes/pcn/pojo/model/MesNcProcessingInputModel.java @@ -27,6 +27,9 @@ public class MesNcProcessingInputModel { private String sn; @ApiParam("责任人") + private String onlyPerson; + + @ApiParam("责任人") private MesDefectType person; @ApiParam("区域代码")