mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-24 13:05:11 +08:00
新增 运营端小程序查询站点信息接口
This commit is contained in:
@@ -18,6 +18,17 @@ import java.math.BigDecimal;
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
public class StationStatisticsInfosVO {
|
||||
|
||||
/**
|
||||
* 站点id
|
||||
*/
|
||||
private String stationId;
|
||||
|
||||
/**
|
||||
* 站点名称
|
||||
*/
|
||||
private String stationName;
|
||||
|
||||
/**
|
||||
* 充电度数
|
||||
*/
|
||||
@@ -41,30 +52,30 @@ public class StationStatisticsInfosVO {
|
||||
/**
|
||||
* 充电中的设备数量
|
||||
*/
|
||||
private Integer chargingPileNum;
|
||||
private Integer chargingConnectorNum;
|
||||
|
||||
/**
|
||||
* 空闲中的设备数量
|
||||
*/
|
||||
private Integer freePileNum;
|
||||
private Integer freeConnectorNum;
|
||||
|
||||
/**
|
||||
* 占用中的设备数量
|
||||
*/
|
||||
private Integer occupiedPileNum;
|
||||
private Integer occupiedConnectorNum;
|
||||
|
||||
/**
|
||||
* 挂起中的设备数量
|
||||
*/
|
||||
private Integer hangingPileNum;
|
||||
private Integer hangingConnectorNum;
|
||||
|
||||
/**
|
||||
* 离线设备数量
|
||||
*/
|
||||
private Integer offlinePileNum;
|
||||
private Integer offlineConnectorNum;
|
||||
|
||||
/**
|
||||
* 故障桩数量
|
||||
*/
|
||||
private Integer faultPileNum;
|
||||
private Integer faultConnectorNum;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user