zhengyiming
2025-03-31 d5fe1b8b4de07a9ceeee5bba65677f5c0b5e9d5d
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
@@ -1182,6 +1182,11 @@
public class LifePayExpensesReceiptsListOutput
{
    /// <summary>
    /// 编号
    /// </summary>
    public Guid Id { get; set; }
    /// <summary>
    /// 平台订单号
    /// </summary>
    public string OrderNo { get; set; }
@@ -1217,7 +1222,27 @@
    public List<T> Data { get; set; } = new List<T>();
    /// <summary>
    /// 累计充值
    /// 累计收入
    /// </summary>
    public decimal TotalRechargeAmount { get; set; }
    public decimal TotalIncome { get; set; }
    /// <summary>
    /// 累计退款
    /// </summary>
    public decimal TotalRefund { get; set; }
    /// <summary>
    /// 实际收入
    /// </summary>
    public decimal RealIncome { get; set; }
}
public class ReceiptsListOutPut
{
    /// <summary>
    /// 创建时间
    /// </summary>
    public DateTime CreationTime { get; set; }
    public decimal Amount { get; set; }
}