feat:修复商户审核校验

This commit is contained in:
2025-12-29 22:10:23 +08:00
parent 7cb5e9a805
commit b9dc49b7a9

View File

@@ -8,6 +8,6 @@ namespace TakeoutSaaS.Application.App.Merchants.Commands;
/// 审核商户入驻。
/// </summary>
public sealed record ReviewMerchantCommand(
[property: Required] long MerchantId,
[param: Required] long MerchantId,
bool Approve,
string? Remarks) : IRequest<MerchantDto>;