Files
TakeoutSaaS.TenantApi/src/Application/TakeoutSaaS.Application/App/Stores/Commands/UpdateStoreQualificationCommand.cs
2026-02-17 12:12:01 +08:00

46 lines
1008 B
C#

using MediatR;
using TakeoutSaaS.Application.App.Stores.Dto;
namespace TakeoutSaaS.Application.App.Stores.Commands;
/// <summary>
/// 更新门店资质命令。
/// </summary>
public sealed record UpdateStoreQualificationCommand : IRequest<StoreQualificationDto?>
{
/// <summary>
/// 门店 ID。
/// </summary>
public long StoreId { get; init; }
/// <summary>
/// 资质 ID。
/// </summary>
public long QualificationId { get; init; }
/// <summary>
/// 证照文件 URL。
/// </summary>
public string? FileUrl { get; init; }
/// <summary>
/// 证照编号。
/// </summary>
public string? DocumentNumber { get; init; }
/// <summary>
/// 签发日期。
/// </summary>
public DateOnly? IssuedAt { get; init; }
/// <summary>
/// 到期日期。
/// </summary>
public DateOnly? ExpiresAt { get; init; }
/// <summary>
/// 排序值。
/// </summary>
public int? SortOrder { get; init; }
}