|
|
|
|
using AutoMapper;
|
|
|
|
|
using Entity.DbModel.Station;
|
|
|
|
|
using Entity.Dto.Req;
|
|
|
|
|
using Entity.Dto.Resp;
|
|
|
|
|
using HybirdFrameworkCore.Entity;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using Repository.Station;
|
|
|
|
|
using Service.Charger;
|
|
|
|
|
using Service.Charger.Client;
|
|
|
|
|
using Service.Station;
|
|
|
|
|
|
|
|
|
|
namespace WebStarter.Controllers;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 充电机管理
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Produces("application/json")]
|
|
|
|
|
[ApiController]
|
|
|
|
|
[Route("api/[controller]")]
|
|
|
|
|
public class ChargeController : ControllerBase
|
|
|
|
|
{
|
|
|
|
|
private ChargerService _chargerService;
|
|
|
|
|
private BinInfoService _binInfoService;
|
|
|
|
|
|
|
|
|
|
public ChargeController(ChargerService chargerService, BinInfoService binInfoService)
|
|
|
|
|
{
|
|
|
|
|
_chargerService = chargerService;
|
|
|
|
|
_binInfoService = binInfoService;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 仓位信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>仓位信息列表</returns>
|
|
|
|
|
[HttpGet]
|
|
|
|
|
[Route("GetChargMonitorChargBinData")]
|
|
|
|
|
public Result<List<BinInfoResp>> GetChargMonitorChargBinData()
|
|
|
|
|
{
|
|
|
|
|
return Result<List<BinInfoResp>>.Success(_binInfoService.GetChargMonitorChargBinData());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 仓位禁用
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="data">需要禁用仓id</param>
|
|
|
|
|
/// <returns>仓位信息列表</returns>
|
|
|
|
|
[HttpGet]
|
|
|
|
|
[Route("ChargingBinDisable/{data}")]
|
|
|
|
|
public Result<bool> ChargingBinDisable(int data)
|
|
|
|
|
{
|
|
|
|
|
return Result<bool>.Success(_binInfoService.UpdateStatus(data));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取仓位实时功率
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>仓位实时功率列表</returns>
|
|
|
|
|
[HttpPost]
|
|
|
|
|
[Route("GetBinPowers")]
|
|
|
|
|
public Result<float[]> GetBinPowers()
|
|
|
|
|
{
|
|
|
|
|
float[] results = ClientMgr.Dictionary.Values
|
|
|
|
|
.Select(chargerClient => chargerClient.RealTimeChargePower)
|
|
|
|
|
.ToArray();
|
|
|
|
|
return Result<float[]>.Success(results);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通过仓号启动充电
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="binNo">仓号</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
[HttpGet]
|
|
|
|
|
[Route("StartChargeByBinNo/{binNo}")]
|
|
|
|
|
public Result<bool> StartChargeByBinNo(string binNo)
|
|
|
|
|
{
|
|
|
|
|
return _chargerService.StartChargeByBinNo(binNo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通过仓号停止充电
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="binNo">仓号</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
[HttpGet]
|
|
|
|
|
[Route("StopChargeByBinNo/{binNo}")]
|
|
|
|
|
public Result<bool> StopChargeByBinNo(string binNo)
|
|
|
|
|
{
|
|
|
|
|
return _chargerService.StopChargeByBinNo(binNo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 下发电价配置
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="version"></param>
|
|
|
|
|
[HttpGet]
|
|
|
|
|
[Route("DistributeElecPriceForCharge/{Version}")]
|
|
|
|
|
public Result<bool> DistributeElecPriceForCharge(int Version)
|
|
|
|
|
{
|
|
|
|
|
return _chargerService.DistributeElecPriceForCharge(Version);
|
|
|
|
|
}
|
|
|
|
|
//BatteryStatusInfo
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 电池状态信息:电池总数 满电数量、充电中、故障电池、维护中电池
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
[HttpGet]
|
|
|
|
|
[Route("BatteryStatusInfo")]
|
|
|
|
|
public Result<BatteryStatusInfoResp> BatteryStatusInfo()
|
|
|
|
|
{
|
|
|
|
|
return _chargerService.BatteryStatusInfo();
|
|
|
|
|
}
|
|
|
|
|
}
|