guyue
2025-09-05 c9ab412c787f478d7689bb5c0aaad7478887a1b7
平台筛选2
1个文件已修改
7 ■■■■■ 已修改文件
src/main/java/com/linghu/service/impl/PlatformServiceImpl.java 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/linghu/service/impl/PlatformServiceImpl.java
@@ -140,12 +140,11 @@
        } else {
            CustomPage<Platform> customPage = new CustomPage<>(new Page<>());
            customPage.setRecords(new ArrayList<>());
            customPage.setTotal(0);
                List<Platform> list = this.list(queryWrapper);
                customPage.setRecords(list);
                customPage.setTotal(list.size());
            return ResponseResult.success(customPage);
        }
    }