From 65d4798738f9a91a647e5670123ad29e7257b741 Mon Sep 17 00:00:00 2001 From: "ys.git" <18439391935@163.com> Date: Mon, 8 Dec 2025 17:22:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B9=E6=8D=AE=E7=94=A8=E6=88=B7=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E6=9D=83=E9=99=90=20=E6=96=B0=E5=A2=9E=E5=8F=82?= =?UTF-8?q?=E6=95=B0ID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/xdap/self_development/pojo/view/MenuParamView.java | 1 + .../xdap/self_development/service/impl/ModelRoleServiceImpl.java | 1 + 2 files changed, 2 insertions(+) diff --git a/src/main/java/com/xdap/self_development/pojo/view/MenuParamView.java b/src/main/java/com/xdap/self_development/pojo/view/MenuParamView.java index c732af3..8087623 100644 --- a/src/main/java/com/xdap/self_development/pojo/view/MenuParamView.java +++ b/src/main/java/com/xdap/self_development/pojo/view/MenuParamView.java @@ -11,6 +11,7 @@ public class MenuParamView { private String menuPath; private String subsystem; private String parameterName; + private String parameterId; private String parameterPer; } diff --git a/src/main/java/com/xdap/self_development/service/impl/ModelRoleServiceImpl.java b/src/main/java/com/xdap/self_development/service/impl/ModelRoleServiceImpl.java index e772a87..e98a8b2 100644 --- a/src/main/java/com/xdap/self_development/service/impl/ModelRoleServiceImpl.java +++ b/src/main/java/com/xdap/self_development/service/impl/ModelRoleServiceImpl.java @@ -179,6 +179,7 @@ public class ModelRoleServiceImpl implements ModelRoleService { menuParamView.setMenuPath(modelMenuDictionaryPojo.getMenuDesc()); menuParamView.setSubsystem(menuParameter.getSubsystem()); menuParamView.setParameterName(parameter.getParameterName()); + menuParamView.setParameterId(parameterId); menuParamView.setParameterPer(byCode.getDesc()); menuParamViews.add(menuParamView); }