对接浙江平台

This commit is contained in:
Guoqs
2024-08-08 10:59:35 +08:00
parent 413c1914c8
commit ff4de26cd8
6 changed files with 15 additions and 11 deletions

View File

@@ -62,7 +62,7 @@ import java.util.Map;
import java.util.stream.Collectors;
/**
* TODO
* 海南平台
*
* @author Lemon
* @Date 2024/1/18 10:05:23

View File

@@ -56,6 +56,9 @@ import java.math.RoundingMode;
import java.util.*;
import java.util.stream.Collectors;
/**
* 上海联联平台
*/
@Service
public class LianLianPlatformServiceImpl implements ThirdPartyPlatformService {
Logger logger = LoggerFactory.getLogger(this.getClass());

View File

@@ -56,8 +56,11 @@ import java.util.*;
import java.util.function.Function;
import java.util.stream.Collectors;
/**
* 宁夏平台
*/
@Service
public class NinaXiaPlatformServiceImpl implements ThirdPartyPlatformService {
public class NingXiaPlatformServiceImpl implements ThirdPartyPlatformService {
// 平台类型
private final String thirdPlatformType = ThirdPlatformTypeEnum.NING_XIA_PLATFORM.getTypeCode();

View File

@@ -5,12 +5,11 @@ import com.google.common.collect.Lists;
import com.jsowell.common.enums.thirdparty.ThirdPlatformTypeEnum;
import com.jsowell.common.util.JWTUtils;
import com.jsowell.common.util.StringUtils;
import com.jsowell.pile.service.ThirdPartyPlatformConfigService;
import com.jsowell.pile.thirdparty.CommonParamsDTO;
import com.jsowell.pile.vo.ThirdPartySecretInfoVO;
import com.jsowell.thirdparty.lianlian.vo.AccessTokenVO;
import com.jsowell.thirdparty.platform.service.ThirdPartyPlatformService;
import com.jsowell.thirdparty.platform.factory.ThirdPartyPlatformFactory;
import com.jsowell.thirdparty.platform.service.ThirdPartyPlatformService;
import com.jsowell.thirdparty.platform.util.Cryptos;
import com.jsowell.thirdparty.platform.util.ThirdPartyPlatformUtils;
import com.jsowell.thirdparty.service.ThirdpartySecretInfoService;
@@ -20,14 +19,14 @@ import org.springframework.stereotype.Service;
import java.util.List;
import java.util.Map;
/**
* 中电联
*/
@Service
public class ZhongDianLianPlatformServiceImpl implements ThirdPartyPlatformService {
// 平台类型
private final String thirdPlatformType = ThirdPlatformTypeEnum.NING_BO_PLATFORM.getTypeCode();
@Autowired
private ThirdPartyPlatformConfigService thirdPartyPlatformConfigService;
@Autowired
private ThirdpartySecretInfoService thirdpartySecretInfoService;