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

@@ -1,13 +1,12 @@
using MediatR;
using TakeoutSaaS.Application.App.Merchants.Dto;
using TakeoutSaaS.Domain.Merchants.Enums;
namespace TakeoutSaaS.Application.App.Merchants.Commands;
/// <summary>
/// 更新商户命令。
/// </summary>
public sealed record UpdateMerchantCommand : IRequest<MerchantDto?>
public sealed record UpdateMerchantCommand : IRequest<UpdateMerchantResultDto?>
{
/// <summary>
/// 商户 ID。
@@ -15,29 +14,29 @@ public sealed record UpdateMerchantCommand : IRequest<MerchantDto?>
public long MerchantId { get; init; }
/// <summary>
/// 品牌名称。
/// 商户名称。
/// </summary>
public string BrandName { get; init; } = string.Empty;
public string? Name { get; init; }
/// <summary>
/// 品牌简称
/// 营业执照号
/// </summary>
public string? BrandAlias { get; init; }
public string? LicenseNumber { get; init; }
/// <summary>
/// Logo 地址
/// 法人或负责人
/// </summary>
public string? LogoUrl { get; init; }
public string? LegalRepresentative { get; init; }
/// <summary>
/// 品类
/// 注册地址
/// </summary>
public string? Category { get; init; }
public string? RegisteredAddress { get; init; }
/// <summary>
/// 联系电话。
/// </summary>
public string ContactPhone { get; init; } = string.Empty;
public string? ContactPhone { get; init; }
/// <summary>
/// 联系邮箱。
@@ -45,7 +44,7 @@ public sealed record UpdateMerchantCommand : IRequest<MerchantDto?>
public string? ContactEmail { get; init; }
/// <summary>
/// 入驻状态
/// 并发控制版本
/// </summary>
public MerchantStatus Status { get; init; }
public byte[] RowVersion { get; init; } = Array.Empty<byte>();
}