From b4288a88cb00793368c8e9244a7b3181daeadb96 Mon Sep 17 00:00:00 2001 From: zhengyuxuan <zhengyuxuan1995> Date: 星期五, 28 三月 2025 16:11:11 +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