namespace TakeoutSaaS.Application.App.Stores.Dto; /// /// 门店资质预警分页结果 DTO。 /// public sealed record StoreQualificationAlertResultDto { /// /// 资质预警列表。 /// public IReadOnlyList Items { get; init; } = []; /// /// 当前页码。 /// public int Page { get; init; } /// /// 每页条数。 /// public int PageSize { get; init; } /// /// 总条数。 /// public int TotalCount { get; init; } /// /// 总页数。 /// public int TotalPages { get; init; } /// /// 统计汇总。 /// public StoreQualificationAlertSummaryDto Summary { get; init; } = new(); }