You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.1 KiB
67 lines
2.1 KiB
using Entity.Constant;
|
|
using Entity.DbModel.Station;
|
|
using Entity.Dto;
|
|
using HybirdFrameworkCore.Autofac.Attribute;
|
|
using SqlSugar;
|
|
|
|
namespace Repository.Station;
|
|
|
|
[Scope("SingleInstance")]
|
|
public class BinInfoRepository : BaseRepository<BinInfo>
|
|
{
|
|
public BinInfoRepository(ISqlSugarClient sqlSugar) : base(sqlSugar)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 选包
|
|
/// </summary>
|
|
/// <param name="swapSoc"> StaticStationInfo.SwapSoc </param>
|
|
/// <param name="swapFinishChargeTime">StaticStationInfo.SwapFinishChargeTime</param>
|
|
/// <returns></returns>
|
|
public SelectPackDto SelectPack(string swapSoc, string swapFinishChargeTime)
|
|
{
|
|
SelectPackDto selectPackDto = new()
|
|
{
|
|
SuccessFlag = false,
|
|
};
|
|
List<BinInfo> list =
|
|
QueryListByClause(i =>i.No!="1" &&
|
|
i.Exists == 1 && i.Status == 1 && i.AmtLock == (int)InfoEnum.AmtBatLockStatus.UnLock);
|
|
if (list.Count <= 0)
|
|
{
|
|
selectPackDto.Info = InfoEnum.SelectBinStatusInfo.NoBattery;
|
|
return selectPackDto;
|
|
}
|
|
|
|
list = list.Where(i => i.ChargeStatus == 2).ToList();
|
|
if (list.Count <= 0)
|
|
{
|
|
selectPackDto.Info = InfoEnum.SelectBinStatusInfo.LessOfFinishCharging;
|
|
return selectPackDto;
|
|
}
|
|
|
|
|
|
list = list.Where(i => i.Soc > int.Parse(swapSoc)).ToList();
|
|
if (list.Count <= 0)
|
|
{
|
|
selectPackDto.Info = InfoEnum.SelectBinStatusInfo.LessOfSoc;
|
|
return selectPackDto;
|
|
}
|
|
|
|
list = list.Where(i => new TimeSpan(DateTime.Now.Ticks -
|
|
i.LastChargeFinishTime.ToDateTime().Ticks)
|
|
.TotalMinutes > int.Parse(swapFinishChargeTime)).ToList();
|
|
if (list.Count <= 0)
|
|
{
|
|
selectPackDto.Info = InfoEnum.SelectBinStatusInfo.LessOf3Minute;
|
|
return selectPackDto;
|
|
}
|
|
|
|
selectPackDto.BinInfo = list[0];
|
|
selectPackDto.Info = InfoEnum.SelectBinStatusInfo.Success;
|
|
selectPackDto.SuccessFlag = true;
|
|
|
|
return selectPackDto;
|
|
}
|
|
} |