| | |
| | | _MCSService = MCSService; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 分容测试完成通知 |
| | | /// </summary> |
| | | /// <param name="input"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("NotifyFinishTest"), AllowAnonymous] |
| | | public WebResponseContent NotifyFinishTest([FromBody] object input) |
| | | { |
| | | return _MCSService.NotifyFinishTest(input); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 请求移库 |
| | | /// </summary> |
| | | /// <param name="input"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("RequestChangeLocation"), AllowAnonymous] |
| | | public WebResponseContent RequestChangeLocation([FromBody] object input) |
| | | { |
| | | return _MCSService.RequestChangeLocation(input); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 分容库位同步 |
| | | /// </summary> |
| | | /// <param name="input"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("ModifyAccessStatus"), AllowAnonymous] |
| | | public WebResponseContent ModifyAccessStatus([FromBody] object input) |
| | | { |
| | | return _MCSService.ModifyAccessStatus(input); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 分容获取库位托盘 |
| | | /// </summary> |
| | | /// <param name="input"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, Route("RequestCellInfo"), AllowAnonymous] |
| | | public object RequsetCellInfo([FromBody] object input) |
| | | { |