| | |
| | | { |
| | | return _service.DeviceErrorResponse(Message,TaskNum); |
| | | } |
| | | |
| | | [HttpGet, Route("RequestOutTask"), AllowAnonymous] |
| | | public WebResponseContent RequestOutTask(string PalletCode, string SourceAddress, string TargetAddress) |
| | | { |
| | | return _service.RequestOutTask(PalletCode, SourceAddress, TargetAddress); |
| | | } |
| | | |
| | | [HttpGet, Route("InTask"), AllowAnonymous] |
| | | public WebResponseContent InTask(string PalletCode, string SourceAddress, string TargetAddress) |
| | | { |
| | | return _service.InTask(PalletCode, SourceAddress, TargetAddress); |
| | | } |
| | | |
| | | [HttpGet, HttpPost, Route("GetAGVStatus"), AllowAnonymous] |
| | | public WebResponseContent GetAGVStatus() |
| | | { |
| | | return _service.GetAGVStatus(); |
| | | } |
| | | [HttpGet, HttpPost, Route("GetStationStatus"), AllowAnonymous] |
| | | public WebResponseContent GetStationStatus(string StationName) |
| | | { |
| | | return _service.GetStationStatus(StationName); |
| | | } |
| | | } |
| | | } |