zhengyuxuan
2025-03-20 149ce84eb71311ccd9719dc4a883aa9b6e63eeb6
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
@@ -181,6 +181,11 @@
    public decimal RechargeAmount { get; set; }
    /// <summary>
    /// 实际充值金额
    /// </summary>
    public decimal? ActualRechargeAmount { get; set; }
    /// <summary>
    /// 优惠金额
    /// </summary>
    public decimal DiscountAmount { get; set; }
@@ -194,6 +199,12 @@
    /// 支付时间
    /// </summary>
    public DateTime? PayTime { get; set; }
    /// <summary>
    /// 平台扣款金额
    /// </summary>
    public decimal? PlatformDeductionAmount { get; set; }
    /// <summary>
    /// 支付状态
@@ -230,12 +241,25 @@
    /// </summary>
    public DateTime? RefundTime { get; set; }
    /// <summary>
    /// 申请退款原因
    /// </summary>
    public string RefundApplyRemark { get; set; }
    /// <summary>
    /// 驳回原因
    /// </summary>
    public string RefundCheckRemark { get; set; }
    /// <summary>
    /// 平台订单号
    /// </summary>
    public string ACOOLYOrderNo { get; set; }
    /// <summary>
    /// 供应商
    /// </summary>
    public ACOOLYStatusEnum? ACOOLYStatus { get; set; }
}
@@ -505,3 +529,18 @@
    public bool IsDeleted { get; set; }
}
public class TopStatisticsOutput
{
    /// <summary>
    /// 账户余额
    /// </summary>
    public string Amount { get; set; }
    /// <summary>
    /// 累计收款
    /// </summary>
    public string AccumulatedReceipts { get; set; }
}