zhengyuxuan
2025-03-31 95798bbe8e398d3dd75926e18dfef2e14d1bc7cc
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
@@ -1110,10 +1110,8 @@
    /// </summary>
    public string Link { get; set; }
}
public class LifePayRechargeReceiptsPageOutput<T> : PageOutputBase
public class LifePayRechargeReceiptsStatistics
{
    public List<T> Data { get; set; } = new List<T>();
    /// <summary>
    /// 累计充值
@@ -1182,6 +1180,11 @@
public class LifePayExpensesReceiptsListOutput
{
    /// <summary>
    /// 编号
    /// </summary>
    public Guid Id { get; set; }
    /// <summary>
    /// 平台订单号
    /// </summary>
    public string OrderNo { get; set; }
@@ -1210,4 +1213,31 @@
    /// 交易时间
    /// </summary>
    public DateTime FinishTime { get; set; }
}
public class LifePayExpensesReceiptsStatistics
{
    /// <summary>
    /// 累计收入
    /// </summary>
    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; }
}