添加单灯调试
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user