From 92431aabd9990112827247330e5f1940a0dcf565 Mon Sep 17 00:00:00 2001 From: Style-lo <375277869@qq.com> Date: Thu, 3 Jul 2025 01:50:07 +0000 Subject: [PATCH] =?UTF-8?q?:art:=20=20getConfigKey=E6=96=B9=E6=B3=95?= =?UTF-8?q?=E6=94=B9=E6=88=90public=E7=9A=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../binarywang/wxpay/service/impl/BaseWxPayServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/BaseWxPayServiceImpl.java b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/BaseWxPayServiceImpl.java index ce0fbaf37..5057ef2b6 100644 --- a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/BaseWxPayServiceImpl.java +++ b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/BaseWxPayServiceImpl.java @@ -207,7 +207,7 @@ public abstract class BaseWxPayServiceImpl implements WxPayService { throw new WxRuntimeException(String.format("无法找到对应mchId=【%s】,appId=【%s】的商户号配置信息,请核实!", mchId, appId)); } - private String getConfigKey(String mchId, String appId) { + public String getConfigKey(String mchId, String appId) { return mchId + "_" + appId; }