完成门店管理后端接口与任务
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user