update 新增中电联相关实体

This commit is contained in:
Lemon
2023-09-05 15:53:16 +08:00
parent 37bc31a6f6
commit f1947e859f
6 changed files with 115 additions and 4 deletions

View File

@@ -1,7 +1,42 @@
package com.jsowell.thirdparty.zhongdianlian.dto;/**
* TODO
package com.jsowell.thirdparty.zhongdianlian.dto;
import lombok.Data;
/**
* 中电联获取token DTO
*
* @author Lemon
* @Date 2023/9/5 8:42
* @author Lemon
*/public class ZDLGetTokenDTO {
*/
@Data
public class ZDLGetTokenDTO {
/**
* 对接平台url地址 不加api名称
*/
private String urlAddress;
/**
* 运营商ID
*/
private String operatorId;
/**
* 运营商密钥
*/
private String operatorSecret;
/**
* 消息Data密钥初始化向量
*/
private String dataSecretIv;
/**
* 签名密钥
*/
private String signSecret;
/**
* 消息Data密钥
*/
private String dataSecret;
}