From f5d5bc0961a6a86f8c0d0b16cf7cbf75b732be3f Mon Sep 17 00:00:00 2001 From: "YAS\\29473" <2947326429@qq.com> Date: Thu, 4 Dec 2025 17:22:41 +0800 Subject: [PATCH] update --- .../common/enums/thirdparty/ThirdPlatformTypeEnum.java | 1 + .../platform/service/impl/LianLianPlatformServiceImpl.java | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/jsowell-common/src/main/java/com/jsowell/common/enums/thirdparty/ThirdPlatformTypeEnum.java b/jsowell-common/src/main/java/com/jsowell/common/enums/thirdparty/ThirdPlatformTypeEnum.java index d308031c5..31f874dca 100644 --- a/jsowell-common/src/main/java/com/jsowell/common/enums/thirdparty/ThirdPlatformTypeEnum.java +++ b/jsowell-common/src/main/java/com/jsowell/common/enums/thirdparty/ThirdPlatformTypeEnum.java @@ -10,6 +10,7 @@ import com.jsowell.common.util.StringUtils; */ public enum ThirdPlatformTypeEnum { LIAN_LIAN_PLATFORM("1", "上海联联平台", "425010765"), + LIAN_LIAN_TEST_PLATFORM("66", "上海联联平台", "425010765"), NING_BO_PLATFORM("2", "宁波平台", "14405899X"), // (原本名称为中电联平台) JIANG_SU_PLATFORM("3", "江苏省平台", "726079387"), YONG_CHENG_BO_CHE("4", "甬城泊车平台", "330205020"), diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/LianLianPlatformServiceImpl.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/LianLianPlatformServiceImpl.java index 3c029dda4..dff0b027b 100644 --- a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/LianLianPlatformServiceImpl.java +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/service/impl/LianLianPlatformServiceImpl.java @@ -72,7 +72,7 @@ import java.util.stream.Collectors; public class LianLianPlatformServiceImpl implements ThirdPartyPlatformService { Logger logger = LoggerFactory.getLogger(this.getClass()); // 平台类型 - private final String thirdPlatformType = ThirdPlatformTypeEnum.LIAN_LIAN_PLATFORM.getTypeCode(); + private final String thirdPlatformType = ThirdPlatformTypeEnum.LIAN_LIAN_TEST_PLATFORM.getTypeCode(); @Autowired private PileMerchantInfoService pileMerchantInfoService; @@ -1900,7 +1900,7 @@ public class LianLianPlatformServiceImpl implements ThirdPartyPlatformService { */ private ThirdPartySecretInfoVO getLianLianPlatformSecretInfo() { // 通过第三方平台类型查询相关配置信息 - ThirdPartySecretInfoVO thirdPartySecretInfoVO = thirdpartySecretInfoService.queryByThirdPlatformType(ThirdPlatformTypeEnum.LIAN_LIAN_PLATFORM.getTypeCode()); + ThirdPartySecretInfoVO thirdPartySecretInfoVO = thirdpartySecretInfoService.queryByThirdPlatformType(ThirdPlatformTypeEnum.LIAN_LIAN_TEST_PLATFORM.getTypeCode()); if (thirdPartySecretInfoVO == null) { throw new BusinessException(ReturnCodeEnum.CODE_SELECT_INFO_IS_NULL); }