11 lines
331 B
C#
11 lines
331 B
C#
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>>;
|