cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/service/impl/WorldCupCompetitorServiceImpl.java
@@ -334,7 +334,10 @@ map.put("phone", participant.getPhone()); } } map1.put("rows", mapList); Integer offset = worldCupRecords.getOffset(); Integer limit = worldCupRecords.getLimit(); limit += offset; map1.put("rows", mapList.subList(offset, mapList.size() >= limit ? limit : mapList.size())); int count = this.baseMapper.worldCupRecordsListCount(appUserIds); map1.put("total", count); return map1;