yuxc
2024-07-02 dd678ba29a3631558ab0c0c90b5be73ae489324b
Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/controller/SmFunctionController.java
@@ -35,7 +35,6 @@
    * @param treeQueryObject 树查询对象
    * @return  树节点,出现错误会在异常处理器中统一返回Json
    */
    @VciUnCheckRight
   @GetMapping("/treeMyMenu")
   public List<MenuVO> treeMyMenu(TreeQueryObject treeQueryObject) throws PLException {
      return functionQueryService.treeCurrentUserMenu(treeQueryObject, ResourceControlTypeEnum.BS);
@@ -92,7 +91,15 @@
      return new DataGrid<>();
   }
   /**
    * 获取当前用户的菜单
    * @param treeQueryObject 树查询对象
    * @return  树节点,出现错误会在异常处理器中统一返回Json
    */
   @VciUnCheckRight
   @GetMapping("/getTreeMyMenu")
   @ResponseBody
   public List<MenuVO> getTreeMyMenu(TreeQueryObject treeQueryObject) throws PLException {
      return functionQueryService.treeCurrentUserMenu(treeQueryObject, ResourceControlTypeEnum.BS);
   }
}