80 lines
1.8 KiB
C#
80 lines
1.8 KiB
C#
using System.Text.Json.Serialization;
|
|
using TakeoutSaaS.Domain.Payments.Enums;
|
|
using TakeoutSaaS.Shared.Abstractions.Serialization;
|
|
|
|
namespace TakeoutSaaS.Application.App.Payments.Dto;
|
|
|
|
/// <summary>
|
|
/// 支付记录 DTO。
|
|
/// </summary>
|
|
public sealed class PaymentDto
|
|
{
|
|
/// <summary>
|
|
/// 支付记录 ID。
|
|
/// </summary>
|
|
[JsonConverter(typeof(SnowflakeIdJsonConverter))]
|
|
public long Id { get; init; }
|
|
|
|
/// <summary>
|
|
/// 租户 ID。
|
|
/// </summary>
|
|
[JsonConverter(typeof(SnowflakeIdJsonConverter))]
|
|
public long TenantId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 订单 ID。
|
|
/// </summary>
|
|
[JsonConverter(typeof(SnowflakeIdJsonConverter))]
|
|
public long OrderId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 支付方式。
|
|
/// </summary>
|
|
public PaymentMethod Method { get; init; }
|
|
|
|
/// <summary>
|
|
/// 支付状态。
|
|
/// </summary>
|
|
public PaymentStatus Status { get; init; }
|
|
|
|
/// <summary>
|
|
/// 金额。
|
|
/// </summary>
|
|
public decimal Amount { get; init; }
|
|
|
|
/// <summary>
|
|
/// 平台交易号。
|
|
/// </summary>
|
|
public string? TradeNo { get; init; }
|
|
|
|
/// <summary>
|
|
/// 渠道单号。
|
|
/// </summary>
|
|
public string? ChannelTransactionId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 支付时间。
|
|
/// </summary>
|
|
public DateTime? PaidAt { get; init; }
|
|
|
|
/// <summary>
|
|
/// 备注。
|
|
/// </summary>
|
|
public string? Remark { get; init; }
|
|
|
|
/// <summary>
|
|
/// 原始回调。
|
|
/// </summary>
|
|
public string? Payload { get; init; }
|
|
|
|
/// <summary>
|
|
/// 退款记录。
|
|
/// </summary>
|
|
public IReadOnlyList<PaymentRefundDto> Refunds { get; init; } = Array.Empty<PaymentRefundDto>();
|
|
|
|
/// <summary>
|
|
/// 创建时间。
|
|
/// </summary>
|
|
public DateTime CreatedAt { get; init; }
|
|
}
|