完成门店管理后端接口与任务

This commit is contained in:
2026-01-01 07:26:14 +08:00
parent dc9f6136d6
commit fc55003d3d
131 changed files with 15333 additions and 201 deletions

View File

@@ -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();
}