refactor: 管理端去租户过滤并Portal化RBAC菜单

This commit is contained in:
2026-01-29 10:46:49 +00:00
parent ea9c20d8a9
commit b3639ff34b
115 changed files with 1106 additions and 1092 deletions

View File

@@ -10,6 +10,11 @@ namespace TakeoutSaaS.Application.App.Stores.Queries;
/// </summary>
public sealed class SearchStoresQuery : IRequest<PagedResult<StoreDto>>
{
/// <summary>
/// 租户 ID为空则查询全部租户
/// </summary>
public long? TenantId { get; init; }
/// <summary>
/// 商户 ID可选
/// </summary>
@@ -40,6 +45,11 @@ public sealed class SearchStoresQuery : IRequest<PagedResult<StoreDto>>
/// </summary>
public string? Keyword { get; init; }
/// <summary>
/// 是否包含已软删除数据。
/// </summary>
public bool IncludeDeleted { get; init; }
/// <summary>
/// 页码。
/// </summary>