feat:商户管理

This commit is contained in:
2025-12-29 16:40:27 +08:00
parent 57f4c2d394
commit dd91c1010a
62 changed files with 10536 additions and 165 deletions

View File

@@ -0,0 +1,10 @@
using MediatR;
using TakeoutSaaS.Application.App.Merchants.Dto;
namespace TakeoutSaaS.Application.App.Merchants.Queries;
/// <summary>
/// 获取商户变更历史。
/// </summary>
public sealed record GetMerchantChangeHistoryQuery(long MerchantId, string? FieldName = null)
: IRequest<IReadOnlyList<MerchantChangeLogDto>>;