新增 浙江省平台 查询站点状态接口

This commit is contained in:
Lemon
2024-08-15 09:24:58 +08:00
parent 4abeb8ee68
commit 415f7c4b36
5 changed files with 120 additions and 2 deletions

View File

@@ -44,7 +44,20 @@ public class ConnectorStatusInfo {
private String LockStatus;
/**
* 平台
* 平台
*/
@JSONField(name = "OperatorID")
private String operatorId;
/**
* 设备归属方运营商id
*/
@JSONField(name = "EquipmentOwnerID")
private String equipmentOwnerId;
@JSONField(name = "StationID")
private String stationId;
@JSONField(name = "EquipmentID")
private String equipmentId;
}

View File

@@ -23,6 +23,29 @@ public class StationStatusInfo {
@JsonProperty(value = "StationID")
private String stationId;
/**
* 平台运营商id
*/
@JsonProperty(value = "OperatorID")
private String operatorId;
/**
* 设备归属方id
*/
@JsonProperty(value = "EquipmentOwnerID")
private String equipmentOwnerId;
/**
* 站点状态
* 0未知
* 1建设中
* 5关闭下线
* 6维护中
* 50正常使用
*/
@JsonProperty(value = "StationStatus")
private Integer stationStatus;
/**
* 充电设备接口状态列表 Y
* 所有充电设备接口的状态

File diff suppressed because one or more lines are too long