管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-10-11 24776e7ffb4815202fbe0035da4198103469e706
src/main/java/com/lf/server/controller/sys/AuthController.java
@@ -96,7 +96,7 @@
    }
    @SysLog()
    @ApiOperation(value = "插入字典")
    @ApiOperation(value = "插入一条")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "entity", value = "字典实体类", dataType = "com.lf.server.entity.sys.AuthEntity", paramType = "body", example = "")
    })
@@ -117,7 +117,7 @@
    }
    @SysLog()
    @ApiOperation(value = "插入多条字典")
    @ApiOperation(value = "插入多条")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "list", value = "实体类集合", dataType = "List<AuthEntity>", paramType = "body", example = "")
    })
@@ -140,9 +140,9 @@
    }
    @SysLog()
    @ApiOperation(value = "删除一条字典")
    @ApiOperation(value = "删除一条")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "id", value = "字典ID", dataType = "Integer", paramType = "query", example = "1")
            @ApiImplicitParam(name = "id", value = "ID", dataType = "Integer", paramType = "query", example = "1")
    })
    @GetMapping(value = "/deleteAuth")
    public ResponseMsg<Integer> deleteAuth(int id) {
@@ -156,9 +156,9 @@
    }
    @SysLog()
    @ApiOperation(value = "删除多条字典")
    @ApiOperation(value = "删除多条")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "ids", value = "字典ID集合", dataType = "List<Integer>", paramType = "query", example = "1,2")
            @ApiImplicitParam(name = "ids", value = "ID集合", dataType = "List<Integer>", paramType = "query", example = "1,2")
    })
    @GetMapping(value = "/deleteAuths")
    public ResponseMsg<Integer> deleteAuths(@RequestParam List<Integer> ids) {
@@ -174,7 +174,7 @@
    }
    @SysLog()
    @ApiOperation(value = "更新一条字典")
    @ApiOperation(value = "更新一条")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "entity", value = "实体类", dataType = "LoginEntity", paramType = "body", example = "")
    })
@@ -196,9 +196,9 @@
    }
    @SysLog()
    @ApiOperation(value = "根据ID查询字典")
    @ApiOperation(value = "根据ID查询")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "id", value = "字典ID", dataType = "Integer", paramType = "query", example = "1")
            @ApiImplicitParam(name = "id", value = "ID", dataType = "Integer", paramType = "query", example = "1")
    })
    @GetMapping(value = "/selectAuth")
    public ResponseMsg<AuthEntity> selectAuth(int id) {
@@ -212,7 +212,7 @@
    }
    @SysLog()
    @ApiOperation(value = "查询所有字典")
    @ApiOperation(value = "查询所有")
    @GetMapping(value = "/selectAuthAll")
    public ResponseMsg<List<AuthEntity>> selectAuthAll() {
        try {