非网用户数据统计项目
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

package com.link.serviceImpl;
import com.link.domain.vo.UserCountVO;
import com.link.mapper.UserCountMapper;
import com.link.service.UserCountService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.time.LocalDateTime;
import java.util.List;
@Service
public class UserCountServiceImpl implements UserCountService {
@Autowired
private UserCountMapper userCountMapper;
@Override
public List<UserCountVO> getEmailUserCount(LocalDateTime startTime) {
return userCountMapper.getEmailUserCount(startTime);
}
@Override
public List<UserCountVO> getGoogleUserCount(LocalDateTime startTime) {
return userCountMapper.getGoogleUserCount(startTime);
}
@Override
public List<UserCountVO> getMessageUserCount(LocalDateTime startTime) {
return userCountMapper.getMessageUserCount(startTime);
}
}