mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-24 13:05:11 +08:00
新增 中电联推送站点信息数据接口
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
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 PushStationInfoDTO {
|
||||
private String thirdPartyType;
|
||||
|
||||
/**
|
||||
* 运营商id
|
||||
*/
|
||||
private String operatorID;
|
||||
|
||||
/**
|
||||
* 签名秘钥
|
||||
*/
|
||||
private String signSecret;
|
||||
|
||||
/**
|
||||
* 消息密钥
|
||||
*/
|
||||
private String dataSecret;
|
||||
|
||||
/**
|
||||
* 消息密钥初始化向量
|
||||
*/
|
||||
private String dataSecretIv;
|
||||
|
||||
/**
|
||||
* 令牌
|
||||
*/
|
||||
private String token;
|
||||
|
||||
/**
|
||||
* 站点id
|
||||
*/
|
||||
private Long stationId;
|
||||
}
|
||||
Reference in New Issue
Block a user