mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-17 16:28:41 +08:00
update 返回参数stationId --> stationIds
This commit is contained in:
@@ -1044,7 +1044,8 @@ public class PileStationInfoServiceImpl implements PileStationInfoService {
|
|||||||
int faultConnectorNum = (int) connectorStatusNum.get("faultNum");
|
int faultConnectorNum = (int) connectorStatusNum.get("faultNum");
|
||||||
|
|
||||||
StationStatisticsInfosVO vo = StationStatisticsInfosVO.builder()
|
StationStatisticsInfosVO vo = StationStatisticsInfosVO.builder()
|
||||||
.stationId(stationIds.get(0))
|
// .stationId(stationIds.get(0))
|
||||||
|
.stationIds(stationIds)
|
||||||
.chargeDegree(chargeDegree)
|
.chargeDegree(chargeDegree)
|
||||||
.chargeAmount(chargeAmount)
|
.chargeAmount(chargeAmount)
|
||||||
.orderQuantity(orderQuantity)
|
.orderQuantity(orderQuantity)
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import lombok.Data;
|
|||||||
import lombok.NoArgsConstructor;
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 站点统计信息数据
|
* 站点统计信息数据
|
||||||
@@ -78,4 +79,9 @@ public class StationStatisticsInfosVO {
|
|||||||
* 故障枪口数量
|
* 故障枪口数量
|
||||||
*/
|
*/
|
||||||
private Integer faultConnectorNum;
|
private Integer faultConnectorNum;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 站点idList
|
||||||
|
*/
|
||||||
|
private List<String> stationIds;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user