using MediatR; using TakeoutSaaS.Application.App.Stores.Dto; namespace TakeoutSaaS.Application.App.Stores.Queries; /// /// 检查门店资质完整性查询。 /// public sealed record CheckStoreQualificationsQuery : IRequest { /// /// 门店 ID。 /// public long StoreId { get; init; } }