From 68153a5267fd7c161b953fd609a7dc7e8058f3a6 Mon Sep 17 00:00:00 2001 From: zhengfangyuan Date: Tue, 2 Aug 2022 11:59:01 +0800 Subject: [PATCH] fix cashout --- .../service/pay/service/cashout/wx/WxCashOutAdapterService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mallinkService/src/main/java/com/iformall/service/pay/service/cashout/wx/WxCashOutAdapterService.java b/mallinkService/src/main/java/com/iformall/service/pay/service/cashout/wx/WxCashOutAdapterService.java index b563a0e66..0c3b9c014 100644 --- a/mallinkService/src/main/java/com/iformall/service/pay/service/cashout/wx/WxCashOutAdapterService.java +++ b/mallinkService/src/main/java/com/iformall/service/pay/service/cashout/wx/WxCashOutAdapterService.java @@ -222,7 +222,7 @@ public class WxCashOutAdapterService implements CashOutAdapterService{ response = WxPay.merchantTranferChange(payService,generateWxCashOutPV3(payAccount, cAppInfo, cashOut)); } catch (Exception e) { log.error("零钱支付异常: " + e.getMessage(),e); - return new CashOutAdapterResult(false, EnumCashOutStatus.FAIL.getCode(), "微信零钱支付接口调用异常", null); + return new CashOutAdapterResult(false, EnumCashOutStatus.FAIL.getCode(), "微信零钱支付接口调用异常."+e.getMessage(), null); } //log.info("微信零钱支付:" + wxCashOutP.toString() +", response: " + response.toString()); return getReusltFromp(response,cashOut);