|
|
@ -26,6 +26,8 @@ public class UserCountServiceImpl implements UserCountService { |
|
|
List<UserCountVO> userCountVOList =userCountMapper.getEmailUserCount(startTime); |
|
|
List<UserCountVO> userCountVOList =userCountMapper.getEmailUserCount(startTime); |
|
|
PageInfo<UserCountVO> pageInfo = new PageInfo<>(userCountVOList); |
|
|
PageInfo<UserCountVO> pageInfo = new PageInfo<>(userCountVOList); |
|
|
PageQuery data = new PageQuery(); |
|
|
PageQuery data = new PageQuery(); |
|
|
|
|
|
data.setPage(page); |
|
|
|
|
|
data.setPageSize(pageSize); |
|
|
data.setTotal(pageInfo.getTotal()); |
|
|
data.setTotal(pageInfo.getTotal()); |
|
|
data.setList(userCountVOList); |
|
|
data.setList(userCountVOList); |
|
|
return data; |
|
|
return data; |
|
|
@ -37,6 +39,8 @@ public class UserCountServiceImpl implements UserCountService { |
|
|
List<UserCountVO> userCountVOList =userCountMapper.getGoogleUserCount(startTime); |
|
|
List<UserCountVO> userCountVOList =userCountMapper.getGoogleUserCount(startTime); |
|
|
PageInfo<UserCountVO> pageInfo = new PageInfo<>(userCountVOList); |
|
|
PageInfo<UserCountVO> pageInfo = new PageInfo<>(userCountVOList); |
|
|
PageQuery data = new PageQuery(); |
|
|
PageQuery data = new PageQuery(); |
|
|
|
|
|
data.setPage(page); |
|
|
|
|
|
data.setPageSize(pageSize); |
|
|
data.setTotal(pageInfo.getTotal()); |
|
|
data.setTotal(pageInfo.getTotal()); |
|
|
data.setList(userCountVOList); |
|
|
data.setList(userCountVOList); |
|
|
return data; |
|
|
return data; |
|
|
@ -48,6 +52,8 @@ public class UserCountServiceImpl implements UserCountService { |
|
|
List<UserCountVO> userCountVOList =userCountMapper.getMessageUserCount(startTime); |
|
|
List<UserCountVO> userCountVOList =userCountMapper.getMessageUserCount(startTime); |
|
|
PageInfo<UserCountVO> pageInfo = new PageInfo<>(userCountVOList); |
|
|
PageInfo<UserCountVO> pageInfo = new PageInfo<>(userCountVOList); |
|
|
PageQuery data = new PageQuery(); |
|
|
PageQuery data = new PageQuery(); |
|
|
|
|
|
data.setPage(page); |
|
|
|
|
|
data.setPageSize(pageSize); |
|
|
data.setTotal(pageInfo.getTotal()); |
|
|
data.setTotal(pageInfo.getTotal()); |
|
|
data.setList(userCountVOList); |
|
|
data.setList(userCountVOList); |
|
|
return data; |
|
|
return data; |
|
|
|