This commit is contained in:
2024-01-25 09:43:14 +08:00
parent dabaddd7d0
commit 902536c343

View File

@@ -104,7 +104,7 @@ public abstract class AbsInterfaceWithPlatformLogic implements InitializingBean
* @return * @return
*/ */
protected String getToken(String urlAddress, String operatorId, String operatorSecret, protected String getToken(String urlAddress, String operatorId, String operatorSecret,
String dataSecretIv, String signSecret, String dataSecret) { String dataSecretIv, String signSecret, String dataSecret) {
String token = ""; String token = "";
try { try {
// 请求地址 // 请求地址
@@ -214,7 +214,7 @@ public abstract class AbsInterfaceWithPlatformLogic implements InitializingBean
return resultMap; return resultMap;
} }
public Map<String, String> checkoutSign(CommonParamsDTO dto){ public Map<String, String> checkoutSign(CommonParamsDTO dto) {
String operatorID = dto.getOperatorID(); String operatorID = dto.getOperatorID();
// 通过operatorID 查出 operatorSecret // 通过operatorID 查出 operatorSecret
ThirdPartyPlatformConfig platformConfig = thirdPartyPlatformConfigService.getInfoByOperatorId(operatorID); ThirdPartyPlatformConfig platformConfig = thirdPartyPlatformConfigService.getInfoByOperatorId(operatorID);