From 57fb27ac6874642d190533df66aa087c6ec94813 Mon Sep 17 00:00:00 2001
From: zhengyuxuan <zhengyuxuan1995>
Date: 星期五, 21 三月 2025 12:28:10 +0800
Subject: [PATCH] 退款订单列表

---
 LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs |   42 +++++++++++++++++++++++++++++++++++-------
 1 files changed, 35 insertions(+), 7 deletions(-)

diff --git a/LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs b/LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs
index 0f24eca..845b691 100644
--- a/LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs
+++ b/LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs
@@ -39,12 +39,12 @@
         /// 鑾峰彇椤堕儴缁熻鏁版嵁
         /// </summary>
         /// <returns></returns>
-        //[HttpGet]
-        //[AllowAnonymous]
-        //public async Task<TopStatisticsOutput> GetTopStatistics()
-        //{
-        //    return await _lifePayService.GetTopStatistics();
-        //}
+        [HttpGet]
+        [AllowAnonymous]
+        public async Task<TopStatisticsOutput> GetTopStatistics()
+        {
+            return await _lifePayService.GetTopStatistics();
+        }
 
         /// <summary>
         /// 鑾峰彇鐢佃垂闈㈠��
@@ -192,6 +192,17 @@
         }
 
         /// <summary>
+        /// 鑾峰彇閫�娆捐鍗曞垎椤垫暟鎹�
+        /// </summary>
+        /// <param name="input"></param>
+        /// <returns></returns>
+        [HttpPost]
+        public async Task<PageOutput<LifePayOrderListOutput>> GetLifePayRefundOrderPage(QueryLifePayRefundOrderListInput input)
+        {
+            return await _lifePayService.GetLifePayRefundOrderPage(input);
+        }
+
+        /// <summary>
         /// 鑾峰彇璁㈠崟璇︽儏
         /// </summary>
         /// <param name="orderNo"></param>
@@ -202,6 +213,16 @@
             return await _lifePayService.GetLifePayOrderDetail(orderNo);
         }
 
+        /// <summary>
+        /// 鑾峰彇閫�娆捐鍗曡鎯�
+        /// </summary>
+        /// <param name="orderNo"></param>
+        /// <returns></returns>
+        [HttpGet]
+        public async Task<LifePayRefundOrderOutput> GetLifePayRefundOrderDetail(string orderNo)
+        {
+            return await _lifePayService.GetLifePayRefundOrderDetail(orderNo);
+        }
 
         /// <summary>
         /// 鑾峰彇鎴戠殑璁㈠崟鍒嗛〉鏁版嵁
@@ -349,10 +370,17 @@
                 var bytes = ExcelHelper.ListToByteForExcel(data, "xlsx");
                 return File(bytes, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "璁㈠崟绠$悊" + ".xlsx");
             }
-
             return Json(default);
         }
 
+        [HttpGet]
+        public async Task<string> GetBillErceiptExport(string orderNo)
+        {
+            var data = await _lifePayService.GetBillErceiptExport(orderNo);
+
+            return data;
+        }
+
         #endregion
 
         #region 鎿嶄綔

--
Gitblit v1.9.1