mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-29 23:50:00 +08:00
bugfix 新电途平台 queryStationStatus接口数据重复异常
This commit is contained in:
@@ -31,7 +31,7 @@ public class ConnectorStatusInfo {
|
||||
* 255:故障
|
||||
*/
|
||||
@JSONField(name = "Status")
|
||||
private String status;
|
||||
private Integer status;
|
||||
|
||||
/**
|
||||
* 车位状态(0-未知;10-空闲;50-占用) N
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package com.jsowell.thirdparty.lianlian.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
@@ -19,11 +20,13 @@ public class StationStatusInfo {
|
||||
* 充电站ID Y
|
||||
* 对接平台自定义的唯一编码,不足长度在前方补0
|
||||
*/
|
||||
private String StationID;
|
||||
@JsonProperty(value = "StationID")
|
||||
private String stationId;
|
||||
|
||||
/**
|
||||
* 充电设备接口状态列表 Y
|
||||
* 所有充电设备接口的状态
|
||||
*/
|
||||
private List<?> ConnectorStatusInfos;
|
||||
@JsonProperty(value = "ConnectorStatusInfos")
|
||||
private List<?> connectorStatusInfos;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user