From aa2cf7a4062b8b25b06385b8a08667fb344de68b Mon Sep 17 00:00:00 2001 From: JohnXi Date: Wed, 14 Aug 2024 09:22:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=BE=AE=E4=BF=A1?= =?UTF-8?q?=E5=9B=9E=E8=B0=83=E6=97=B6=EF=BC=8C=E7=AD=BE=E5=90=8D=E9=AA=8C?= =?UTF-8?q?=E8=AF=81=E5=A4=B1=E8=B4=A5=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core/payment/common/service/PaymentAssistService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daxpay-single/daxpay-single-service/src/main/java/cn/daxpay/single/service/core/payment/common/service/PaymentAssistService.java b/daxpay-single/daxpay-single-service/src/main/java/cn/daxpay/single/service/core/payment/common/service/PaymentAssistService.java index ecf6943bd..0c2fe414c 100644 --- a/daxpay-single/daxpay-single-service/src/main/java/cn/daxpay/single/service/core/payment/common/service/PaymentAssistService.java +++ b/daxpay-single/daxpay-single-service/src/main/java/cn/daxpay/single/service/core/payment/common/service/PaymentAssistService.java @@ -104,7 +104,7 @@ public class PaymentAssistService { public void sign(PaymentCommonResult result) { PlatformLocal platformInfo = PaymentContextLocal.get().getPlatformInfo(); // 如果平台配置所有属性为空, 进行初始化 - if (BeanUtil.isEmpty(platformInfo)){ + if (BeanUtil.isEmpty(platformInfo, "reqSign")){ platformConfigService.initPlatform(); } String signType = platformInfo.getSignType();