puzhibing
2024-03-06 8c01841e055ee4d0afd982b9529d7a909ed1c341
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;