ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/service/impl/AppUserServiceImpl.java
@@ -536,4 +536,15 @@ } return user; } @Override 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; } }