|
|
@ -78,8 +78,8 @@ public class DfCheckingLineController { |
|
|
|
@ApiOperation("堤防巡视检查路线删除") |
|
|
|
@Log(title = "堤防巡视检查路线删除", businessType = BusinessType.DELETE) |
|
|
|
@DeleteMapping("/{ids}") |
|
|
|
public Response<Boolean> remove(@PathVariable String[] id) { |
|
|
|
return Response.ok(dfCheckingLineService.deleteById(id)); |
|
|
|
public Response<Boolean> remove(@PathVariable("ids") String[] ids) { |
|
|
|
return Response.ok(dfCheckingLineService.deleteById(ids)); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|