mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
update 华为设备接口状态查询 接口中枪口状态及时修改
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
package com.jsowell.pile.domain.huawei;
|
||||
|
||||
import com.alibaba.fastjson2.annotation.JSONField;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* TODO
|
||||
*
|
||||
* @author Lemon
|
||||
* @Date 2024/3/14 9:43:21
|
||||
*/
|
||||
@Data
|
||||
public class HWStationStatusInfo {
|
||||
/**
|
||||
* 充电站ID Y
|
||||
* 对接平台自定义的唯一编码,不足长度在前方补0
|
||||
*/
|
||||
@JSONField(name = "StationID")
|
||||
private String stationId;
|
||||
|
||||
/**
|
||||
* 充电设备接口状态列表 Y
|
||||
* 所有充电设备接口的状态
|
||||
*/
|
||||
@JSONField(name = "ConnectorStatusInfos")
|
||||
private List<ConnectorStatusInfo> connectorStatusInfos;
|
||||
|
||||
|
||||
@Data
|
||||
public static class ConnectorStatusInfo{
|
||||
|
||||
@JSONField(name = "ConnectorID")
|
||||
private String connectorId;
|
||||
|
||||
@JSONField(name = "Status")
|
||||
private String status;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user