Files
jsowell-charger-web/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/domain/StationStatusInfo.java
2023-04-08 14:20:19 +08:00

30 lines
566 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.jsowell.thirdparty.domain;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
/**
* 充电站状态信息
*/
@Builder
@AllArgsConstructor
@NoArgsConstructor
@Data
public class StationStatusInfo {
/**
* 充电站ID Y
* 对接平台自定义的唯一编码不足长度在前方补0
*/
private String stationId;
/**
* 充电设备接口状态列表 Y
* 所有充电设备接口的状态
*/
private List<ConnectorStatusInfo> connectorStatusInfos;
}