| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | @PostMapping("/hand/control/allocationOut") |
| | | @Transactional |
| | | @ManagerAuth(memo = "调拨离场") |
| | | public R allocationOut(@RequestBody AgvMobileStartPakin param){ |
| | | agvMobileService.allocationOut(param, getUserId()); |
| | | return R.ok(); |
| | | } |
| | | |
| | | @PostMapping("/hand/control/allocationIn") |
| | | @Transactional |
| | | @ManagerAuth(memo = "调拨进场") |
| | | public R allocationIn(@RequestBody AgvMobileStartPakin param){ |
| | | agvMobileService.allocationIn(param, getUserId()); |
| | | return R.ok(); |
| | | } |
| | | |
| | | public static void main(String[] args) { |
| | | List<AgvLocDetl> agvLocDetls1 = new ArrayList<>(); |
| | | List<AgvLocDetl> agvLocDetls2 = new ArrayList<>(); |