mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 22:15:06 +08:00
update 新增中电联相关实体
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user