From e6a35cef322110bdae782266dfac11eb4f7cdce1 Mon Sep 17 00:00:00 2001
From: yuxc <yuxc@vci-tech.com>
Date: 星期三, 05 六月 2024 11:23:07 +0800
Subject: [PATCH] 对象引用改动。

---
 Source/platformProject/vci-platform-web/src/main/java/com/vci/web/controller/SmFunctionController.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/controller/SmFunctionController.java b/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/controller/SmFunctionController.java
index e573d4e..a2272a4 100644
--- a/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/controller/SmFunctionController.java
+++ b/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/controller/SmFunctionController.java
@@ -1,6 +1,6 @@
 package com.vci.web.controller;
 
-import com.vci.corba.common.VCIError;
+import com.vci.corba.common.PLException;
 import com.vci.frameworkcore.compatibility.ISmFunctionQueryService;
 import com.vci.frameworkcore.enumpck.ResourceControlTypeEnum;
 import com.vci.frameworkcore.pagemodel.MenuVO;
@@ -37,7 +37,7 @@
     */
     @VciUnCheckRight
 	@GetMapping("/treeMyMenu")
-	public List<MenuVO> treeMyMenu(TreeQueryObject treeQueryObject) throws VCIError {
+	public List<MenuVO> treeMyMenu(TreeQueryObject treeQueryObject) throws PLException {
 		return functionQueryService.treeCurrentUserMenu(treeQueryObject, ResourceControlTypeEnum.BS);
 	}
 
@@ -48,7 +48,7 @@
 	 */
 	@VciUnCheckRight
 	@GetMapping("/getUIContentByBtmTypeAndId")
-	public UIContentVO getUIContentByBtmTypeAndId(TreeQueryObject treeQueryObject) throws VCIError {
+	public UIContentVO getUIContentByBtmTypeAndId(@RequestBody TreeQueryObject treeQueryObject) throws PLException {
 		return functionQueryService.getUIContentByBtmTypeAndId(treeQueryObject, ResourceControlTypeEnum.BS);
 	}
 	

--
Gitblit v1.9.3