| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | @PostMapping(value = "/taskWrk/distribute/auth") |
| | | @ManagerAuth(memo = "手动派发任务") |
| | | public R distribute(@RequestParam String taskNo) { |
| | | taskWrkService.distribute(taskNo, getUserId()); |
| | | return R.ok(); |
| | | } |
| | | // @PostMapping(value = "/taskWrk/distribute/auth") |
| | | // @ManagerAuth(memo = "手动派发任务") |
| | | // public R distribute(@RequestParam String taskNo) { |
| | | // taskWrkService.distribute(taskNo, getUserId()); |
| | | // return R.ok(); |
| | | // } |
| | | |
| | | @PostMapping(value = "/taskWrk/complete/auth") |
| | | @ManagerAuth(memo = "手动完成任务") |