管道基础大数据平台系统开发-【后端】-Server
Surpriseplus
2022-10-09 c7774c89c92f7c0a476e7b14916ee9751aa78db9
src/main/java/com/lf/server/controller/data/StyleController.java
@@ -84,7 +84,7 @@
                return success(0, null);
            }
            List<StyleEntity> rs = styleService.selectByPage(name, pageSize, pageSize * pageIndex);
            List<StyleEntity> rs = styleService.selectByPage(name, pageSize, pageSize * (pageIndex - 1));
            return success(count, rs);
        } catch (Exception ex) {
@@ -95,7 +95,7 @@
    @SysLog()
    @ApiOperation(value = "插入字典")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "StyleEntity", value = "字典实体类", dataType = "List<StyleEntity>", paramType = "body", example = "")
            @ApiImplicitParam(name = "styleEntity", value = "字典实体类", dataType = "com.lf.server.entity.data.StyleEntity", paramType = "body", example = "")
    })
    @PostMapping(value = "/insertStyle", produces = "application/json; charset=UTF-8")
    public ResponseMsg<Integer> insertStyle(@RequestBody StyleEntity styleEntity) {