From 7377c6ab43dfc4b622055a992efaadc972c24726 Mon Sep 17 00:00:00 2001
From: yuxc <yuxc@vci-tech.com>
Date: 星期五, 03 一月 2025 17:18:58 +0800
Subject: [PATCH] 1、管理功能模块、业务功能模块,判断菜单标识alias是否唯一并且必须是英文。 2、操作类型模块添加图标数据。 3、ACTION增加图标。

---
 Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsActionServiceImpl.java |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsActionServiceImpl.java b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsActionServiceImpl.java
index 0a8fec3..6661629 100644
--- a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsActionServiceImpl.java
+++ b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsActionServiceImpl.java
@@ -241,6 +241,7 @@
         plAction.plModifyUser = WebUtil.getCurrentUserId();
         plAction.plActionCls = StringUtils.defaultString(dto.getPlActionCls());
         plAction.plTypeType = StringUtils.defaultString(dto.getPlTypeType());
+        plAction.plImage = StringUtils.defaultString(dto.getPlImage());
         boolean b = platformClientUtil.getUIService().savePLAction(plAction);
         if(!b){
             throw new PLException("500", new String[]{"淇濆瓨澶辫触锛侊紒"});
@@ -274,6 +275,7 @@
         plAction.plModifyUser = WebUtil.getCurrentUserId();
         plAction.plActionCls = StringUtils.defaultString(dto.getPlActionCls());
         plAction.plTypeType = StringUtils.defaultString(dto.getPlTypeType());
+        plAction.plImage = StringUtils.defaultString(dto.getPlImage());
         boolean b = platformClientUtil.getUIService().updatePLAction(plAction);
         if(!b){
             throw new PLException("500", new String[]{"淇敼澶辫触锛侊紒"});
@@ -299,6 +301,7 @@
         plAction.plModifyUser = WebUtil.getCurrentUserId();
         plAction.plActionCls = StringUtils.defaultString(dto.getPlActionCls());
         plAction.plTypeType = StringUtils.defaultString(dto.getPlTypeType());
+        plAction.plImage = StringUtils.defaultString(dto.getPlImage());
         boolean b = platformClientUtil.getUIService().deletePLAction(plAction);
         if(!b){
             throw new PLException("500", new String[]{"鍒犻櫎澶辫触锛侊紒"});

--
Gitblit v1.9.3