From a7dda43ffef6493f19d8d9e82fae28346181b580 Mon Sep 17 00:00:00 2001 From: "autumn.g@foxmail.com" Date: Mon, 21 Aug 2023 15:17:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9B=E5=BB=BA=E5=88=A0=E9=99=A4=E7=BB=93?= =?UTF-8?q?=E7=AE=97=E8=B4=A6=E6=88=B7=E8=AF=B7=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/jsowell/adapay/service/AdapayService.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/jsowell-pile/src/main/java/com/jsowell/adapay/service/AdapayService.java b/jsowell-pile/src/main/java/com/jsowell/adapay/service/AdapayService.java index af9a67764..54990226f 100644 --- a/jsowell-pile/src/main/java/com/jsowell/adapay/service/AdapayService.java +++ b/jsowell-pile/src/main/java/com/jsowell/adapay/service/AdapayService.java @@ -60,9 +60,6 @@ public class AdapayService { @Autowired private RedisCache redisCache; - @Value("${adapay.jsowell.appId}") - private String ADAPAY_APP_ID; - @Value("${adapay.callback}") private String ADAPAY_CALLBACK_URL; @@ -469,7 +466,7 @@ public class AdapayService { settleCountParams.put("settle_account_id", settleAccountId); settleCountParams.put("member_id", adapayMemberId); settleCountParams.put("app_id", config.getAdapayAppId()); - Map settleCount = SettleAccount.delete(settleCountParams); + Map settleCount = SettleAccount.delete(settleCountParams, wechatAppId); log.info("创建删除结算账户请求param:{}, result:{}", JSON.toJSONString(settleCountParams), JSON.toJSONString(settleCount)); }