From 68fd566d21b3efc3a670a5295289b1801f5a4155 Mon Sep 17 00:00:00 2001
From: ludc <ludc@vci-tech.com>
Date: 星期四, 16 一月 2025 18:18:55 +0800
Subject: [PATCH] 流程部署接口上传

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

diff --git a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/SmFunctionQueryServicePlatformImpl.java b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/SmFunctionQueryServicePlatformImpl.java
index 5b7405f..825816c 100644
--- a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/SmFunctionQueryServicePlatformImpl.java
+++ b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/SmFunctionQueryServicePlatformImpl.java
@@ -297,6 +297,7 @@
                 menuVO.setHasChildren(false);
                 menuVO.setCategory(1);
                 menuVO.setFunctionType(2);
+                menuVO.setSource(info.image);
                 buttonList.add(menuVO);
             }
         }
@@ -488,6 +489,7 @@
                                     menuVO.setHasChildren(false);
                                     menuVO.setCategory(1);
                                     menuVO.setFunctionType(3);
+                                    menuVO.setSource(info.image);
                                     menuVOList.add(menuVO);
                                 }
                             }
@@ -607,6 +609,7 @@
         menuVO.setName(funcInfo.name);
         menuVO.getMeta().put("keepAlive",true);
         menuVO.setSort((int) funcInfo.seq);
+        menuVO.setRemark(funcInfo.desc);
         if(this.checkChildObject(menuVO.getId()) == 0){
             menuVO.setHasChildren(false);
         }else{
@@ -655,6 +658,7 @@
             functionVO.setName(menu.name);
             functionVO.getMeta().put("keepAlive",true);
             functionVO.setSort((int) menu.seq);
+            functionVO.setRemark(menu.desc);
             functionVO.setChildren(findChildFunctionVO(menu.id,map));
             if(functionVO.getChildren().size() > 0){
                 functionVO.setHasChildren(true);
@@ -683,6 +687,7 @@
                 menuVO.setName(funcObj.name);
                 menuVO.getMeta().put("keepAlive",true);
                 menuVO.setSort((int) funcObj.seq);
+                menuVO.setRemark(funcObj.desc);
                 findChildAuthFunctionVO(menuVO, isAll);
                 functionVO.getChildren().add(menuVO);
                 functionVO.setHasChildren(true);

--
Gitblit v1.9.3