add 联联平台请求设备认证接口

This commit is contained in:
Lemon
2023-04-24 13:55:33 +08:00
parent 1227ed92c5
commit a18c693d4c
7 changed files with 169 additions and 2 deletions

View File

@@ -0,0 +1,27 @@
package com.jsowell.pile.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
/**
* 联联平台请求设备认证
*
* @author JS-ZZA
* @date 2023/4/19 10:08
*/
@Data
public class QueryEquipmentDTO {
/**
* 设备认证流水号
* 格式“运营商 ID+yyyyMMddHHmmss+4 位随机数”,
* 27 字符
*/
@JsonProperty(value = "EquipAuthSeq")
private String EquipAuthSeq;
/**
* 充电设备接口编码
*/
@JsonProperty(value = "ConnectorID")
private String ConnectorID;
}