管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-03-18 34ccc4ae6b10b30c391ba7738c15059bbf676f59
src/main/java/com/lf/server/controller/data/PublishController.java
@@ -153,7 +153,7 @@
    @SysLog()
    @ApiOperation(value = "删除多条")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "ids", value = "ID数组", dataType = "Integer", paramType = "query", example = "1,2")
            @ApiImplicitParam(name = "ids", value = "ID数组", dataType = "Integer", paramType = "query", allowMultiple = true, example = "1")
    })
    @GetMapping(value = "/deletes")
    public ResponseMsg<Integer> deletes(@RequestParam List<Integer> ids) {
@@ -162,7 +162,7 @@
                return fail("id数组不能为空", -1);
            }
            int count = publishService.deletes(ids);
            int count = publishService.deletes(StringHelper.join(ids, ","));
            return success(count);
        } catch (Exception ex) {