feat: add tenant-scoped rule and permission management

This commit is contained in:
wren
2026-05-21 22:03:08 +08:00
parent a2c2bf1969
commit 1f1bccf3b3
193 changed files with 64463 additions and 1771 deletions
@@ -10,7 +10,14 @@ class IEntryModuleAdminService(ABC):
"""入口模块管理服务接口。"""
@abstractmethod
async def ListModules(self, Name: str | None, Area: str | None, Page: int, PageSize: int) -> EntryModuleListVO:
async def ListModules(
self,
Name: str | None,
Area: str | None,
TenantCode: str | None,
Page: int,
PageSize: int,
) -> EntryModuleListVO:
"""分页查询入口模块。"""
...