From 182c7edd7c70eddbf33e2358f1f1aba96eb58cb3 Mon Sep 17 00:00:00 2001 From: zhengyuxuan <zhengyuxuan1995> Date: 星期五, 28 三月 2025 15:43:46 +0800 Subject: [PATCH] fix:查询优化 --- LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs b/LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs index d0f5172..9cef37a 100644 --- a/LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs +++ b/LifePayment/LifePayment.HttpApi/LifePay/LifePayController.cs @@ -466,12 +466,16 @@ return await _lifePayService.QueryAlipayTradeRefund(input); } - + /// <summary> + /// 鏌ヨ寰俊閫�娆句俊鎭� + /// </summary> + /// <param name="outTradeNo"></param> + /// <returns></returns> [HttpGet] [AllowAnonymous] - public async Task WxPayDomesticRefundsQuery(string outTradeNo) + public async Task<WxPayDomesticRefundsQueryReponse> WxPayDomesticRefundsQuery(string outTradeNo) { - await _lifePayService.WxPayDomesticRefundsQuery(outTradeNo); + return await _lifePayService.WxPayDomesticRefundsQuery(outTradeNo); } #endregion -- Gitblit v1.9.1