update 联联平台接口

This commit is contained in:
Lemon
2023-05-16 10:10:34 +08:00
parent 7cf38df2a3
commit c2cc46d668
6 changed files with 241 additions and 88 deletions

View File

@@ -21,12 +21,14 @@ public class EquipmentInfo {
* 设备编码 Y
* 设备唯一编码,对同一对接平台,保证唯一
*/
private String EquipmentID;
@JSONField(name = "EquipmentID")
private String equipmentID;
/**
* 设备生产商组织机构代码 Y
*/
private String ManufacturerID;
@JSONField(name = "ManufacturerID")
private String manufacturerID;
/**
* 设备型号 N
@@ -49,12 +51,14 @@ public class EquipmentInfo {
* 建设时间 Y
* YYYY-MM-DD
*/
private String ConstructionTime;
@JSONField(name = "ConstructionTime")
private String constructionTime;
/**
* 设备类型(1-直流设备2-交流设备3-交直流一体设备) Y
*/
private Integer EquipmentType;
@JSONField(name = "EquipmentType")
private Integer equipmentType;
/**
* 设备状态 Y
@@ -64,24 +68,28 @@ public class EquipmentInfo {
* 6维护中
* 50正常使用
*/
private Integer EquipmentStatus;
@JSONField(name = "EquipmentStatus")
private Integer equipmentStatus;
/**
* 额定功率(单位kW) Y
*/
private BigDecimal EquipmentPower;
@JSONField(name = "EquipmentPower")
private BigDecimal equipmentPower;
/**
* 新国标(0-否1-是) Y
* 是否新国标
*/
private Integer NewNationalStandard;
@JSONField(name = "NewNationalStandard")
private Integer newNationalStandard;
/**
* 充电设备接口列表 Y
* 该充电设备所有的充电设备接口的信息对象集合
*/
private List<ConnectorInfo> ConnectorInfos;
@JSONField(name = "ConnectorInfos")
private List<ConnectorInfo> connectorInfos;
/**
* 充电设备经度 N
@@ -98,6 +106,7 @@ public class EquipmentInfo {
/**
* 是否支持VIN码识别(0-否1-是) Y
*/
private Integer VinFlag;
@JSONField(name = "VinFlag")
private Integer vinFlag;
}