From 711e221144ce074dc2a585d01adbf27a92a15810 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Fri, 4 Jul 2025 12:12:47 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20=E9=A2=84=E7=BD=AE?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E9=9B=86=E7=AE=A1=E7=90=86-=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=8F=82=E6=95=B0=E6=98=A0=E5=B0=84=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1457855364825088]预置参数集管理-修改参数映射异常 http://192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1457855364825088 --- .../module/autoexec/service/AutoexecProfileServiceImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/neatlogic/module/autoexec/service/AutoexecProfileServiceImpl.java b/src/main/java/neatlogic/module/autoexec/service/AutoexecProfileServiceImpl.java index 85e96451..3d04f283 100644 --- a/src/main/java/neatlogic/module/autoexec/service/AutoexecProfileServiceImpl.java +++ b/src/main/java/neatlogic/module/autoexec/service/AutoexecProfileServiceImpl.java @@ -277,6 +277,7 @@ public class AutoexecProfileServiceImpl implements AutoexecProfileService, IAuto newParamVo.setMappingMode(AutoexecProfileParamInvokeType.GLOBAL_PARAM.getValue()); newParamVo.setDefaultValue(oldParamVo.getDefaultValue()); } else if (StringUtils.equals(AutoexecProfileParamInvokeType.CONSTANT.getValue(), oldParamVo.getMappingMode())) { + newParamVo.setMappingMode(AutoexecProfileParamInvokeType.CONSTANT.getValue()); if (StringUtils.equals(AutoexecGlobalParamType.PASSWORD.getValue(), oldParamVo.getType()) && StringUtils.isNotBlank(oldParamVo.getDefaultValueStr())) { newParamVo.setDefaultValue(RC4Util.decrypt(oldParamVo.getDefaultValueStr())); } else { -- Gitee