| | |
| | | public CommonResult deleteSlagCar(@RequestParam Integer id) { |
| | | return CommonResult.success(iCarSlagcarService.removeById(id)); |
| | | } |
| | | |
| | | @ApiOperation("批量删除执法车") |
| | | @DeleteMapping("/batch_deletion_enforce") |
| | | @LogSave(operationType = "车辆管理", contain = "批量删除执法车") |
| | | public CommonResult batchDeleteEnforce(@RequestParam List<Long> ids) { |
| | | return CommonResult.success(iCarEnforcecarService.removeBatchByIds(ids)); |
| | | } |
| | | |
| | | @ApiOperation("批量删除渣土车") |
| | | @DeleteMapping("/batch_deletion_slag") |
| | | @LogSave(operationType = "车辆管理", contain = "批量删除渣土车") |
| | | public CommonResult batchDeleteSlag(@RequestParam List<Long> ids) { |
| | | return CommonResult.success(iCarSlagcarService.removeBatchByIds(ids)); |
| | | } |
| | | } |