From 2100d73d9a7bbda29b50461a334ac03434cc2047 Mon Sep 17 00:00:00 2001 From: "autumn.g@foxmail.com" Date: Fri, 22 Sep 2023 11:02:11 +0800 Subject: [PATCH] update --- .../pile/service/impl/ClearingWithdrawInfoServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ClearingWithdrawInfoServiceImpl.java b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ClearingWithdrawInfoServiceImpl.java index c7997d973..c69ec8bb8 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ClearingWithdrawInfoServiceImpl.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ClearingWithdrawInfoServiceImpl.java @@ -114,11 +114,11 @@ public class ClearingWithdrawInfoServiceImpl implements ClearingWithdrawInfoServ } for (ClearingWithdrawInfo clearingWithdrawInfo : infoList) { String withdrawCode = clearingWithdrawInfo.getWithdrawCode(); - DrawCashDetailVO drawCashDetailVO = adapayService.queryDrawCashDetail(withdrawCode, wechatAppId); WithdrawInfoVO vo = new WithdrawInfoVO(); vo.setMerchantId(merchantId); vo.setWithdrawCode(withdrawCode); vo.setApplicationTime(DateUtils.formatDateTime(clearingWithdrawInfo.getApplicationTime())); + DrawCashDetailVO drawCashDetailVO = adapayService.queryDrawCashDetail(withdrawCode, wechatAppId); if (drawCashDetailVO != null) { vo.setStatusDesc(drawCashDetailVO.getStatusDesc()); vo.setCashAmt(drawCashDetailVO.getCashAmt());