From 8b923699a5ff894ca839b4b5ce79979d5dd20459 Mon Sep 17 00:00:00 2001
From: zhengyuxuan <zhengyuxuan1995>
Date: 星期五, 21 三月 2025 13:26:18 +0800
Subject: [PATCH] fix:bug修复

---
 LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs |   20 +++++++++++++++++++-
 1 files changed, 19 insertions(+), 1 deletions(-)

diff --git a/LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs b/LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs
index 893a7e7..845b691 100644
--- a/LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs
+++ b/LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs
@@ -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>
@@ -359,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