refactor: 增加租户查询条件 (#181)

This commit is contained in:
luoqiz
2025-08-06 09:49:57 +08:00
committed by GitHub
parent df6e294cbd
commit 2bb2f96857
4 changed files with 21 additions and 5 deletions

View File

@@ -32,7 +32,8 @@ public interface MenuApi {
* 查询树结构列表
*
* @param excludeMenuIds 排除的菜单 ID 列表
* @param isSimple 是否是简单树结构
* @return 树结构列表
*/
List<Tree<Long>> listTree(List<Long> excludeMenuIds);
List<Tree<Long>> listTree(List<Long> excludeMenuIds, boolean isSimple);
}