|
|
|
@ -153,7 +153,7 @@ public class ChargerService
|
|
|
|
|
if (binInfos.Count > 0)
|
|
|
|
|
batteryStatusInfoResp.btyTotalCount = binInfos.Count();
|
|
|
|
|
List<BinInfo> canSwapCounts = BinInfoRepository.QueryListByClause(i =>
|
|
|
|
|
i.Exists == 1 && i.Status == 1 && i.Soc > Convert.ToDecimal(StaticStationInfo.SwapSoc));
|
|
|
|
|
i.Exists == 1 && i.Status == 1 && i.Soc > Convert.ToDecimal(StaticStationInfo.SwapSoc) && i.ChargeStatus!=1);
|
|
|
|
|
if (canSwapCounts.Count > 0)
|
|
|
|
|
batteryStatusInfoResp.canSwapCount = canSwapCounts.Count();
|
|
|
|
|
List<BinInfo> chargingCounts =
|
|
|
|
|