|
@@ -52,8 +52,8 @@ public class PayWxV3Service {
|
|
private Config getConfigQinggu() {
|
|
private Config getConfigQinggu() {
|
|
return Objects.nonNull(configQinggu) ? configQinggu : (configQinggu = new RSAAutoCertificateConfig.Builder()
|
|
return Objects.nonNull(configQinggu) ? configQinggu : (configQinggu = new RSAAutoCertificateConfig.Builder()
|
|
.merchantId(mchidQinggu).privateKeyFromPath(keyPathQinggu)
|
|
.merchantId(mchidQinggu).privateKeyFromPath(keyPathQinggu)
|
|
- .merchantSerialNumber("keyNumberQinggu")
|
|
|
|
- .apiV3Key("apiKeyQinggu").build());
|
|
|
|
|
|
+ .merchantSerialNumber(keyNumberQinggu)
|
|
|
|
+ .apiV3Key(apiKeyQinggu).build());
|
|
}
|
|
}
|
|
private static NotificationConfig notificationConfigDongke;
|
|
private static NotificationConfig notificationConfigDongke;
|
|
private static NotificationConfig notificationConfigQinggu;
|
|
private static NotificationConfig notificationConfigQinggu;
|
|
@@ -66,8 +66,8 @@ public class PayWxV3Service {
|
|
private NotificationConfig getNotificationConfigQinggu() {
|
|
private NotificationConfig getNotificationConfigQinggu() {
|
|
return Objects.nonNull(notificationConfigQinggu) ? notificationConfigQinggu : (notificationConfigQinggu = new RSAAutoCertificateConfig.Builder()
|
|
return Objects.nonNull(notificationConfigQinggu) ? notificationConfigQinggu : (notificationConfigQinggu = new RSAAutoCertificateConfig.Builder()
|
|
.merchantId(mchidQinggu).privateKeyFromPath(keyPathQinggu)
|
|
.merchantId(mchidQinggu).privateKeyFromPath(keyPathQinggu)
|
|
- .merchantSerialNumber("keyNumberQinggu")
|
|
|
|
- .apiV3Key("apiKeyQinggu").build());
|
|
|
|
|
|
+ .merchantSerialNumber(keyNumberQinggu)
|
|
|
|
+ .apiV3Key(apiKeyQinggu).build());
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|