From 95798bbe8e398d3dd75926e18dfef2e14d1bc7cc Mon Sep 17 00:00:00 2001
From: zhengyuxuan <zhengyuxuan1995>
Date: 星期一, 31 三月 2025 10:18:10 +0800
Subject: [PATCH] fix:流水分页数据返回结果更新
---
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs | 36 ++++++++++++++++++++++++++++--------
1 files changed, 28 insertions(+), 8 deletions(-)
diff --git a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
index 1828a28..7fe3e08 100644
--- a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
+++ b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
@@ -1110,11 +1110,9 @@
/// </summary>
public string Link { get; set; }
}
-public class LifePayRechargeReceiptsPageOutput<T> : PageOutputBase
+public class LifePayRechargeReceiptsStatistics
{
- public List<T> Data { get; set; } = new List<T>();
-
/// <summary>
/// 绱鍏呭��
/// </summary>
@@ -1182,6 +1180,11 @@
public class LifePayExpensesReceiptsListOutput
{
/// <summary>
+ /// 缂栧彿
+ /// </summary>
+ public Guid Id { get; set; }
+
+ /// <summary>
/// 骞冲彴璁㈠崟鍙�
/// </summary>
public string OrderNo { get; set; }
@@ -1211,13 +1214,30 @@
/// </summary>
public DateTime FinishTime { get; set; }
}
-public class LifePayExpensesReceiptsPageOutput<T> : PageOutputBase
+public class LifePayExpensesReceiptsStatistics
{
-
- public List<T> Data { get; set; } = new List<T>();
+ /// <summary>
+ /// 绱鏀跺叆
+ /// </summary>
+ public decimal TotalIncome { get; set; }
/// <summary>
- /// 绱鍏呭��
+ /// 绱閫�娆�
/// </summary>
- public decimal TotalRechargeAmount { get; set; }
+ 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; }
}
\ No newline at end of file
--
Gitblit v1.10.0