src/main/java/com/linghu/service/impl/PlatformServiceImpl.java | ●●●●● 补丁 | 查看 | 原始文档 | 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); } }