mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-19 18:45:03 +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");
|
||||
|
||||
StationStatisticsInfosVO vo = StationStatisticsInfosVO.builder()
|
||||
.stationId(stationIds.get(0))
|
||||
// .stationId(stationIds.get(0))
|
||||
.stationIds(stationIds)
|
||||
.chargeDegree(chargeDegree)
|
||||
.chargeAmount(chargeAmount)
|
||||
.orderQuantity(orderQuantity)
|
||||
|
||||
@@ -6,6 +6,7 @@ import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 站点统计信息数据
|
||||
@@ -78,4 +79,9 @@ public class StationStatisticsInfosVO {
|
||||
* 故障枪口数量
|
||||
*/
|
||||
private Integer faultConnectorNum;
|
||||
|
||||
/**
|
||||
* 站点idList
|
||||
*/
|
||||
private List<String> stationIds;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user