管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-10-13 773643f7aaf8d7287aa320105492f0430a5c4698
src/main/java/com/lf/server/controller/sys/ArgsController.java
@@ -123,8 +123,8 @@
        }
    }
    @SysLog()
    @ApiOperation(value = "添加数据")
    /*@SysLog()
    @ApiOperation(value = "插入一条")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "entity", value = "实体类", dataType = "ArgsEntity", paramType = "body")
    })
@@ -145,7 +145,7 @@
    }
    @SysLog()
    @ApiOperation(value = "批量添加")
    @ApiOperation(value = "插入多条")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "list", value = "实体类集合", dataType = "ArgsEntity", paramType = "body")
    })
@@ -168,7 +168,7 @@
    }
    @SysLog()
    @ApiOperation(value = "刪除数据")
    @ApiOperation(value = "删除一条")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "id", value = "ID", dataType = "Integer", paramType = "query", example = "1")
    })
@@ -184,7 +184,7 @@
    }
    @SysLog()
    @ApiOperation(value = "批量删除")
    @ApiOperation(value = "删除多条")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "ids", value = "ID数组", dataType = "Integer", paramType = "query", example = "1,2")
    })
@@ -201,10 +201,10 @@
        } catch (Exception ex) {
            return fail(ex.getMessage(), -1);
        }
    }
    }*/
    @SysLog()
    @ApiOperation(value = "修改数据")
    @ApiOperation(value = "更新一条")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "entity", value = "实体类", dataType = "ArgsEntity", paramType = "body")
    })
@@ -225,8 +225,8 @@
        }
    }
    @SysLog()
    @ApiOperation(value = "批量修改")
    /*@SysLog()
    @ApiOperation(value = "更新多条")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "list", value = "实体类集合", dataType = "ArgsEntity", paramType = "body")
    })
@@ -247,5 +247,5 @@
        } catch (Exception ex) {
            return fail(ex.getMessage(), -1);
        }
    }
    }*/
}