添加单灯调试

This commit is contained in:
hehaibing-1996
2024-06-25 13:48:57 +08:00
parent 7f35077c07
commit 7228b74cb5
8 changed files with 211 additions and 68 deletions

View File

@ -4,6 +4,7 @@ using WCS.BLL.Manager;
using WCS.BLL.Services.IService;
using WCS.BLL.Tool;
using WCS.Model;
using WCS.Model.ApiModel.InStore;
namespace WebApi.Controllers
{
@ -147,7 +148,24 @@ namespace WebApi.Controllers
return await _instoreService.queryInstoreStatusSingle(request);
//ShelfManager.
//
}
catch (Exception ex)
{
return new ResponseCommon()
{
Code = 300,
Message = $"<22><><EFBFBD><EFBFBD>ʧ<EFBFBD><CAA7>:{ex.Message}",
};
}
}
[Route("debugStoreinfoSingle")]
[HttpPost(Name = "debugStoreinfoSingle")]
public async Task<ResponseBase> debugStoreinfoSingle(DebugStoreinfoSingleRequest request)
{
try
{
return await _instoreService.debugStoreinfoSingle(request);
}
catch (Exception ex)
{