From eca8f18f436f81d84b1be65b5c91f59e60e15f85 Mon Sep 17 00:00:00 2001 From: zhn <947514737@qq.com> Date: Tue, 19 Sep 2023 09:39:17 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A4=E8=AF=81=E6=B8=85=E5=8D=95-=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E9=85=8D=E7=BD=AE=EF=BC=88=E5=B7=A5=E7=A8=8B=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E4=BA=BA=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PlatformProjectCertificationInventoryEOServiceImpl.java | 2 ++ .../impl/ProjectCertificationInventoryEOServiceImpl.java | 2 ++ 2 files changed, 4 insertions(+) diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/platform/service/impl/PlatformProjectCertificationInventoryEOServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/platform/service/impl/PlatformProjectCertificationInventoryEOServiceImpl.java index cd4aca3ff..4592a6b41 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/platform/service/impl/PlatformProjectCertificationInventoryEOServiceImpl.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/platform/service/impl/PlatformProjectCertificationInventoryEOServiceImpl.java @@ -4390,6 +4390,7 @@ public class PlatformProjectCertificationInventoryEOServiceImpl extends ServiceI } String configItem = json.getString("configItem"); + String sdt = json.getString("sdt");//工程接口人 if(StringUtils.isEmpty(ids)){ throw new JeroBootException("请选择一个配置!"); } @@ -4398,6 +4399,7 @@ public class PlatformProjectCertificationInventoryEOServiceImpl extends ServiceI List projectCertificationInventoryEOList = this.list(queryWrap); projectCertificationInventoryEOList.forEach(certificationInventoryEO -> { certificationInventoryEO.setConfigItem(configItem); + certificationInventoryEO.setSdt(sdt); }); this.updateBatchById(projectCertificationInventoryEOList); diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/project/service/impl/ProjectCertificationInventoryEOServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/project/service/impl/ProjectCertificationInventoryEOServiceImpl.java index c1e006cbb..7c04dc814 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/project/service/impl/ProjectCertificationInventoryEOServiceImpl.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/project/service/impl/ProjectCertificationInventoryEOServiceImpl.java @@ -4199,6 +4199,7 @@ public class ProjectCertificationInventoryEOServiceImpl extends ServiceImpl projectCertificationInventoryEOList = this.list(queryWrap); projectCertificationInventoryEOList.forEach(certificationInventoryEO -> { certificationInventoryEO.setConfigItem(configItem); + certificationInventoryEO.setSdt(sdt); }); this.updateBatchById(projectCertificationInventoryEOList);