Files
TakeoutSaaS.TenantApi/src/Application/TakeoutSaaS.Application/App/Stores/Dto/StoreQualificationAlertResultDto.cs

38 lines
864 B
C#

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