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.

71 lines
1.8 KiB

using Entity.Api.Resp;
using Entity.Constant;
using Entity.DbModel.Station;
using HybirdFrameworkCore.Entity;
using Microsoft.AspNetCore.Mvc;
using Repository.Station;
using Service.Execute;
using Service.Execute.Api;
using Service.Init;
using Service.Plc.Client;
using Service.Station;
namespace WebStarter.Controllers;
/// <summary>
/// 换电大屏
/// </summary>
[ApiController]
[Route("api/[controller]")]
public class BinInfoController : ControllerBase
{
private readonly BinInfoRepository _BinInfoRepository;
public BinInfoController(BinInfoRepository infoRepository)
{
_BinInfoRepository = infoRepository;
}
/// <summary>
/// 启用禁用充电
/// id:仓位id
/// flag 1启用 0:禁用
/// </summary>
/// <param name="removeBinNo"></param>
/// <param name="putBinNo"></param>
/// <returns></returns>
[HttpGet("UpdateCanChargeFlag/{id}/{flag}")]
public async Task<Result<bool>> UpdateCanChargeFlag(int id, int flag)
{
BinInfo binInfo = new BinInfo()
{
Id = id,
CanChargeFlag = flag
};
_BinInfoRepository.Update(binInfo);
return Result<bool>.Success();
}
/// <summary>
/// 启用禁用换电
/// id:仓位id
/// flag 1启用 0:禁用
/// </summary>
/// <param name="removeBinNo"></param>
/// <param name="putBinNo"></param>
/// <returns></returns>
[HttpGet("UpdateCanSwapFlag/{id}/{flag}")]
public async Task<Result<bool>> UpdateCanSwapFlag(int id, int flag)
{
BinInfo binInfo = new BinInfo()
{
Id = id,
CanSwapFlag = flag
};
_BinInfoRepository.Update(binInfo);
return Result<bool>.Success();
}
}