非网用户数据统计项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
928 B

1 month ago
  1. package com.link.serviceImpl;
  2. import com.link.domain.vo.UserCountVO;
  3. import com.link.mapper.UserCountMapper;
  4. import com.link.service.UserCountService;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.stereotype.Service;
  7. import java.time.LocalDateTime;
  8. import java.util.List;
  9. @Service
  10. public class UserCountServiceImpl implements UserCountService {
  11. @Autowired
  12. private UserCountMapper userCountMapper;
  13. @Override
  14. public List<UserCountVO> getEmailUserCount(LocalDateTime startTime) {
  15. return userCountMapper.getEmailUserCount(startTime);
  16. }
  17. @Override
  18. public List<UserCountVO> getGoogleUserCount(LocalDateTime startTime) {
  19. return userCountMapper.getGoogleUserCount(startTime);
  20. }
  21. @Override
  22. public List<UserCountVO> getMessageUserCount(LocalDateTime startTime) {
  23. return userCountMapper.getMessageUserCount(startTime);
  24. }
  25. }