huliguo
2025-04-23 f2070facdb5715e7349df69cfe257289c680d292
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;
   }