From 5e7800c13fc225ba556c35bc7108f1d9e517e540 Mon Sep 17 00:00:00 2001 From: zhuxinru Date: Thu, 15 Jan 2026 09:28:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=96=B0=E5=A2=9E=E8=A1=A8=E5=A4=B4?= =?UTF-8?q?=E5=90=8C=E6=AD=A5=E5=85=B6=E4=BB=96=E7=A7=9F=E6=88=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../system/service/impl/SimulationSystemConfigServiceImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/system/src/main/java/com/sdm/system/service/impl/SimulationSystemConfigServiceImpl.java b/system/src/main/java/com/sdm/system/service/impl/SimulationSystemConfigServiceImpl.java index b5a76a75..b3791b9e 100644 --- a/system/src/main/java/com/sdm/system/service/impl/SimulationSystemConfigServiceImpl.java +++ b/system/src/main/java/com/sdm/system/service/impl/SimulationSystemConfigServiceImpl.java @@ -329,6 +329,7 @@ public class SimulationSystemConfigServiceImpl extends BaseService implements IS tenantIdList.forEach(i -> { if (CollectionUtils.isEmpty(formConfigureService.lambdaQuery().eq(SysFormConfigure::getFormName, configure.formName) .eq(SysFormConfigure::getTenantId, i).list())) { + sysFormConfigure.setId(null); sysFormConfigure.setTenantId(tenantId); formConfigureService.save(sysFormConfigure); }