ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/service/impl/AppUserServiceImpl.java
@@ -541,6 +541,9 @@ public PageInfo<UserPointStatisticsVO> getUserPointPageList(String name, Integer pageCurr, Integer pageSize) { PageInfo<UserPointStatisticsVO> pageInfo=new PageInfo<>(pageCurr,pageSize); List<UserPointStatisticsVO> list=baseMapper.getUserPointPageList(pageInfo, name); list.forEach(x->{ x.setIdStr(String.valueOf(x.getId())); }); pageInfo.setRecords(list); return pageInfo; }