mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
add 联联平台请求设备认证接口
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user