| | |
| | | package com.vci.frameworkcore.compatibility; |
| | | |
| | | import com.vci.common.exception.VciException; |
| | | import com.vci.corba.common.PLException; |
| | | import com.vci.frameworkcore.enumpck.ResourceControlTypeEnum; |
| | | import com.vci.pagemodel.MenuVO; |
| | | import com.vci.pagemodel.SmFunctionVO; |
| | | import com.vci.starter.web.exception.VciBaseException; |
| | | import com.vci.starter.web.pagemodel.DataGrid; |
| | | import com.vci.starter.web.pagemodel.PageHelper; |
| | | import com.vci.starter.web.pagemodel.Tree; |
| | |
| | | List<MenuVO> treeCurrentUserMenu(TreeQueryObject treeQueryObject, ResourceControlTypeEnum resourceControlTypeEnum) throws PLException; |
| | | |
| | | /** |
| | | * 通过模块ID获取子级列表 |
| | | * @param parentId |
| | | * @param isAll 是否包括无效的模块,true则包括 |
| | | * @return |
| | | * @throws VciBaseException |
| | | */ |
| | | List<MenuVO> getSysModelTreeMenuByPID(String parentId,boolean isAll) throws VciBaseException; |
| | | |
| | | int checkChildObject(String moduleId) throws VciException; |
| | | |
| | | /** |
| | | * 获取所有的功能菜单 |
| | | * @param treeQueryObject 树查询对象 |
| | | * @param resourceControlTypeEnum 角色控制区域,也是功能控制的区域 |
| | | * @return 树节点,出现错误会在异常处理器中统一返回Json |
| | | */ |
| | | List<Tree> treeAllMenu(TreeQueryObject treeQueryObject, ResourceControlTypeEnum resourceControlTypeEnum); |
| | | |
| | | |
| | | /** |
| | | * 通过上级节点获取下级的所有的菜单节点 |