| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | @PostMapping("/hand/control/empOut") |
| | | @Transactional |
| | | @ManagerAuth(memo = "空架离场") |
| | | @Synchronized |
| | | public R empOut(@RequestBody AgvMobileStartPakin param){ |
| | | agvMobileService.empOut(param, getUserId()); |
| | | return R.ok(); |
| | | } |
| | | |
| | | @PostMapping("/hand/control/empIn") |
| | | @Transactional |
| | | @ManagerAuth(memo = "空架进场") |
| | | @Synchronized |
| | | public R empIn(@RequestBody AgvMobileStartPakin param){ |
| | | agvMobileService.empIn(param, getUserId()); |
| | | return R.ok(); |
| | | } |
| | | |
| | | @PostMapping("/hand/control/doBack") |
| | | @Transactional |
| | | @ManagerAuth(memo = "站点回退") |