update 设备状态变化推送联联平台接口

This commit is contained in:
Lemon
2023-05-26 09:40:24 +08:00
parent 0362095a10
commit 742b4a1b02
6 changed files with 55 additions and 12 deletions

View File

@@ -19,22 +19,22 @@ public class LianLianPushStationInfoDTO {
/**
* 运营商id
*/
private String OperatorID;
private String operatorID;
/**
* 签名秘钥
*/
private String SigSecret;
private String signSecret;
/**
* 消息密钥
*/
private String DataSecret;
private String dataSecret;
/**
* 消息密钥初始化向量
*/
private String DataSecretIV;
private String dataSecretIv;
/**
* 令牌

View File

@@ -0,0 +1,16 @@
package com.jsowell.pile.dto;
import lombok.Data;
/**
* 练练平台推送信息参数DTO
*
* @author JS-ZZA
* @date 2023/5/26 9:26
*/
@Data
public class PushInfoParamDTO {
private String pileConnectorCode;
private String status;
}