|
|
|
@ -19,9 +19,9 @@ namespace WebStarter.Controllers;
|
|
|
|
|
[Route("api/[controller]")]
|
|
|
|
|
public class BinInfoController : ControllerBase
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
private readonly BinInfoRepository _BinInfoRepository;
|
|
|
|
|
public BinInfoController(BinInfoRepository infoRepository)
|
|
|
|
|
|
|
|
|
|
public BinInfoController(BinInfoRepository infoRepository)
|
|
|
|
|
{
|
|
|
|
|
_BinInfoRepository = infoRepository;
|
|
|
|
|
}
|
|
|
|
@ -35,24 +35,24 @@ public class BinInfoController : ControllerBase
|
|
|
|
|
/// <param name="putBinNo"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
[HttpGet("UpdateCanChargeFlag/{id}/{flag}")]
|
|
|
|
|
public Result<bool> UpdateCanChargeFlag(int id, int flag)
|
|
|
|
|
public Result<bool> UpdateCanChargeFlag(int id, int flag)
|
|
|
|
|
{
|
|
|
|
|
_BinInfoRepository.Update(it=>it.CanChargeFlag==flag,it=>it.Id==id);
|
|
|
|
|
_BinInfoRepository.Update(it => it.CanChargeFlag == flag, it => it.Id == id);
|
|
|
|
|
return Result<bool>.Success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[HttpGet("insert")]
|
|
|
|
|
public Result<bool> insert()
|
|
|
|
|
public Result<bool> insert()
|
|
|
|
|
{
|
|
|
|
|
_BinInfoRepository.Insert(new BinInfo()
|
|
|
|
|
{
|
|
|
|
|
No = "10"
|
|
|
|
|
});
|
|
|
|
|
BinInfo queryByClause = _BinInfoRepository.QueryByClause(i=>i.Id==16);
|
|
|
|
|
BinInfo queryByClause = _BinInfoRepository.QueryByClause(i => i.Id == 16);
|
|
|
|
|
return Result<bool>.Success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 启用禁用换电 :
|
|
|
|
|
/// id:仓位id
|
|
|
|
@ -64,10 +64,19 @@ public class BinInfoController : ControllerBase
|
|
|
|
|
[HttpGet("UpdateCanSwapFlag/{id}/{flag}")]
|
|
|
|
|
public async Task<Result<bool>> UpdateCanSwapFlag(int id, int flag)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
_BinInfoRepository.Update(it=>it.CanSwapFlag==flag,it=>it.Id==id);
|
|
|
|
|
_BinInfoRepository.Update(it => it.CanSwapFlag == flag, it => it.Id == id);
|
|
|
|
|
return Result<bool>.Success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 风机控制 1000:全部打开
|
|
|
|
|
///1010:全部关闭
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
[HttpGet("AirBlowerControl/{cmd}")]
|
|
|
|
|
public Result<bool> AirBlower(ushort cmd)
|
|
|
|
|
{
|
|
|
|
|
return PlcMgr.AirBlowerControl(cmd) ? Result<bool>.Success() : Result<bool>.Fail();
|
|
|
|
|
}
|
|
|
|
|
}
|