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

19 lines
619 B

1 month ago
  1. package com.link.mapper;
  2. import com.link.domain.vo.UserCountVO;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import org.apache.ibatis.annotations.Param;
  5. import org.springframework.beans.factory.annotation.Qualifier;
  6. import java.time.LocalDateTime;
  7. import java.util.List;
  8. @Mapper
  9. @Qualifier("hljwSqlSessionTemplate")
  10. public interface UserCountMapper {
  11. List<UserCountVO> getEmailUserCount(@Param("startTime") LocalDateTime startTime);
  12. List<UserCountVO> getGoogleUserCount(@Param("startTime") LocalDateTime startTime);
  13. List<UserCountVO> getMessageUserCount(@Param("startTime") LocalDateTime startTime);
  14. }