mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-20 23:29:48 +08:00
update 联联充电相关接口
This commit is contained in:
@@ -19,11 +19,11 @@ public class ConnectorStatsInfo {
|
|||||||
* 充电设备接口编码 Y
|
* 充电设备接口编码 Y
|
||||||
* 充电设备接口编码,同一对接平台内唯一
|
* 充电设备接口编码,同一对接平台内唯一
|
||||||
*/
|
*/
|
||||||
private String pileConnectorCode;
|
private String ConnectorID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 充电设备接口累计电量
|
* 充电设备接口累计电量
|
||||||
* 累计电量,单位kWh,精度0.1
|
* 累计电量,单位kWh,精度0.1
|
||||||
*/
|
*/
|
||||||
private BigDecimal connectorAccumulateElectricity;
|
private BigDecimal ConnectorElectricity;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,22 +15,22 @@ import java.util.List;
|
|||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
@NoArgsConstructor
|
@NoArgsConstructor
|
||||||
@Data
|
@Data
|
||||||
public class pileStatsInfo {
|
public class EquipmentStatsInfo {
|
||||||
/**
|
/**
|
||||||
* 设备编码 Y
|
* 设备编码 Y
|
||||||
* 设备唯一编码,对同一对接平台,保证唯一
|
* 设备唯一编码,对同一对接平台,保证唯一
|
||||||
*/
|
*/
|
||||||
private String pileSn;
|
private String EquipmentID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 充电设备累计电量 Y
|
* 充电设备累计电量 Y
|
||||||
* 累计电量,单位kWh,精度0.1
|
* 累计电量,单位kWh,精度0.1
|
||||||
*/
|
*/
|
||||||
private BigDecimal pileAccumulateElectricity;
|
private BigDecimal EquipmentElectricity;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 充电设备接口统计信息列表 Y
|
* 充电设备接口统计信息列表 Y
|
||||||
* 充设备的所有充电设备接口统计对象集合
|
* 充设备的所有充电设备接口统计对象集合
|
||||||
*/
|
*/
|
||||||
private List<ConnectorStatsInfo> connectorStatsInfos;
|
private List<ConnectorStatsInfo> ConnectorStatsInfos;
|
||||||
}
|
}
|
||||||
40
jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/domain/StationStatsInfo.java
vendored
Normal file
40
jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/domain/StationStatsInfo.java
vendored
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
package com.jsowell.thirdparty.domain;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 充电站统计信息
|
||||||
|
*
|
||||||
|
* @author JS-ZZA
|
||||||
|
* @date 2023/4/15 9:29
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class StationStatsInfo {
|
||||||
|
/**
|
||||||
|
* 充电站 ID
|
||||||
|
*/
|
||||||
|
private String StationID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 统计的开始时间
|
||||||
|
*/
|
||||||
|
private String StartTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 统计的结束时间
|
||||||
|
*/
|
||||||
|
private String EndTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 充电站累计电量
|
||||||
|
*/
|
||||||
|
private BigDecimal StationElectricity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 充电设备统计信息列表
|
||||||
|
*/
|
||||||
|
private List<EquipmentStatsInfo> equipmentStatsInfos;
|
||||||
|
}
|
||||||
@@ -204,8 +204,14 @@ public class LianLianServiceImpl implements LianLianService {
|
|||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询统计信息
|
||||||
|
* @param dto
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public LianLianPageResponse query_station_stats(QueryStationInfoDTO dto) {
|
public LianLianPageResponse query_station_stats(QueryStationInfoDTO dto) {
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user