update 第三方平台整合方法

This commit is contained in:
Lemon
2025-02-12 08:57:57 +08:00
parent 69596d2416
commit b85780f576
8 changed files with 109 additions and 58 deletions

View File

@@ -14,6 +14,8 @@ public class ThirdPartyStationRelationVO {
private String thirdPartyType;
private String thirdPartyName;
private String startMode;
private String urlAddress;
@@ -22,4 +24,24 @@ public class ThirdPartyStationRelationVO {
private String signSecret;
private String dataSecret;
private String dataSecretIv;
/**
* 对方平台密钥信息
*/
private String theirOperatorId;
private String theirOperatorSecret;
private String theirSignSecret;
private String theirDataSecret;
private String theirDataSecretIv;
/**
* 我方平台密钥信息
*/
private String ourOperatorId;
private String ourOperatorSecret;
private String ourSignSecret;
private String ourDataSecret;
private String ourDataSecretIv;
}