| | |
| | | } |
| | | |
| | | [HttpPost, Route("ConveyorLineHandTask"), AllowAnonymous] |
| | | public WebResponseContent ConveyorLineHandTask([FromBody] HandTask stackerhand) |
| | | public WebResponseContent ConveyorLineHandTask([FromBody] HandTask ConveyorLinehand) |
| | | { |
| | | return Service.ConveyorLineHandTask(stackerhand); |
| | | return Service.ConveyorLineHandTask(ConveyorLinehand); |
| | | } |
| | | |
| | | [HttpPost, Route("ConveyorLineReset"), AllowAnonymous] |
| | |
| | | { |
| | | return Service.ConveyorLineInitialize(DeviceChildCode); |
| | | } |
| | | |
| | | [HttpPost, Route("RGVHandTask"), AllowAnonymous] |
| | | public WebResponseContent RGVHandTask([FromBody] HandTask RGVhand) |
| | | { |
| | | return Service.RGVHandTask(RGVhand); |
| | | } |
| | | |
| | | [HttpPost, Route("RGVReset"), AllowAnonymous] |
| | | public WebResponseContent RGVReset(string DeviceCode) |
| | | { |
| | | return Service.RGVReset(DeviceCode); |
| | | } |
| | | |
| | | [HttpPost, Route("RGVEmergencyStop"), AllowAnonymous] |
| | | public WebResponseContent RGVEmergencyStop(string DeviceCode) |
| | | { |
| | | return Service.RGVEmergencyStop(DeviceCode); |
| | | } |
| | | |
| | | [HttpPost, Route("RGVCancel"), AllowAnonymous] |
| | | public WebResponseContent RGVCancel(string DeviceCode) |
| | | { |
| | | return Service.RGVCancel(DeviceCode); |
| | | } |
| | | |
| | | [HttpPost, Route("RGVInitialize"), AllowAnonymous] |
| | | public WebResponseContent RGVInitialize(string DeviceCode) |
| | | { |
| | | return Service.RGVInitialize(DeviceCode); |
| | | } |
| | | |
| | | [HttpPost, Route("RGVPause"), AllowAnonymous] |
| | | public WebResponseContent RGVPause(string DeviceCode) |
| | | { |
| | | return Service.RGVPause(DeviceCode); |
| | | } |
| | | } |
| | | } |