puzhibing
2024-03-06 603fbdb1bd13acf72fc94b95d96d32403c0889c2
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;