ycl-platform/src/main/java/com/ycl/controller/caseHandler/BaseCaseController.java
@@ -143,12 +143,12 @@ Integer violationType = 1; Integer illegalBuildingType = 2; if (!ids.isEmpty()) { CommonResult.success(baseCaseService.removeBatchByIds(ids)); if (type == violationType) { return CommonResult.success(violationsService.removeBatchByIds(ids)); } else if (type == illegalBuildingType) { return CommonResult.success(illegalBuildingService.removeBatchByIds(ids)); } return CommonResult.success(baseCaseService.removeBatchByIds(ids)); } return CommonResult.failed("request parameter is null"); }