mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-20 00:44:25 +08:00
getConfigKey方法取消private使用public
setMultiConfig方法接收的数据为map时key可以调用getConfigKey获取key,防止使用的时候硬编码
This commit is contained in:
parent
b3b8c273c7
commit
c33f0f1ee3
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user