| | |
| | | @GetMapping("/delete/{id}") |
| | | @RequiresPermissions("business:cardriver:delete") |
| | | public ApiResponse deleteById(@PathVariable Integer id) { |
| | | carDriverService.deleteById(id); |
| | | carDriverService.deleteById(id,this.getLoginUser(null)); |
| | | return ApiResponse.success(null); |
| | | } |
| | | |
| | |
| | | @GetMapping("/delete/batch") |
| | | @RequiresPermissions("business:cardriver:delete") |
| | | public ApiResponse deleteByIdInBatch(@RequestParam String ids) { |
| | | carDriverService.deleteByIdInBatch(this.getIdList(ids)); |
| | | carDriverService.deleteByIdInBatch(this.getIdList(ids),this.getLoginUser(null)); |
| | | return ApiResponse.success(null); |
| | | } |
| | | |