namespace TakeoutSaaS.Application.Messaging.Events;
///
/// 订单创建事件。
///
public sealed class OrderCreatedEvent
{
///
/// 订单标识。
///
public long OrderId { get; init; }
///
/// 订单编号。
///
public string OrderNo { get; init; } = string.Empty;
///
/// 实付金额。
///
public decimal Amount { get; init; }
///
/// 所属租户。
///
public long TenantId { get; init; }
///
/// 门店标识。
///
public long StoreId { get; init; }
///
/// 下单渠道。
///
public int Channel { get; init; }
///
/// 履约类型。
///
public int DeliveryType { get; init; }
///
/// 顾客姓名。
///
public string? CustomerName { get; init; }
///
/// 商品摘要。
///
public string? ItemsSummary { get; init; }
///
/// 桌号。
///
public string? TableNo { get; init; }
///
/// 创建时间(UTC)。
///
public DateTime CreatedAt { get; init; }
}