mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
update 联联平台接口
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
package com.jsowell.pile.dto;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* 联联平台推送站点信息
|
||||
*
|
||||
* @author JS-ZZA
|
||||
* @date 2023/5/10 14:56
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@Builder
|
||||
public class LianLianPushStationInfoDTO {
|
||||
/**
|
||||
* 运营商id
|
||||
*/
|
||||
private String OperatorID;
|
||||
|
||||
/**
|
||||
* 签名秘钥
|
||||
*/
|
||||
private String SigSecret;
|
||||
|
||||
/**
|
||||
* 消息密钥
|
||||
*/
|
||||
private String DataSecret;
|
||||
|
||||
/**
|
||||
* 消息密钥初始化向量
|
||||
*/
|
||||
private String DataSecretIV;
|
||||
|
||||
/**
|
||||
* 令牌
|
||||
*/
|
||||
private String token;
|
||||
|
||||
/**
|
||||
* 站点id
|
||||
*/
|
||||
private Long stationId;
|
||||
}
|
||||
Reference in New Issue
Block a user