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/StmFunctionController.java | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/controller/StmFunctionController.java b/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/controller/StmFunctionController.java index d002ebd..b10a17a 100644 --- a/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/controller/StmFunctionController.java +++ b/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/controller/StmFunctionController.java @@ -1,12 +1,11 @@ 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; import com.vci.starter.web.annotation.controller.VciUnCheckRight; import com.vci.starter.web.pagemodel.BaseResult; -import com.vci.starter.web.pagemodel.Tree; import com.vci.starter.web.pagemodel.TreeQueryObject; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; @@ -46,7 +45,7 @@ @VciUnCheckRight @GetMapping("/getTreeMyMenu") @ResponseBody - public List<MenuVO> getTreeMyMenu(TreeQueryObject treeQueryObject) throws VCIError { + public List<MenuVO> getTreeMyMenu(TreeQueryObject treeQueryObject) throws PLException { return functionQueryService.treeCurrentUserMenu(treeQueryObject, ResourceControlTypeEnum.BS); } } -- Gitblit v1.9.3