package com.link.mapper; import com.link.domain.vo.UserCountVO; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.springframework.beans.factory.annotation.Qualifier; import java.time.LocalDateTime; import java.util.List; @Mapper @Qualifier("hljwSqlSessionTemplate") public interface UserCountMapper { List getEmailUserCount(@Param("startTime") LocalDateTime startTime); List getGoogleUserCount(@Param("startTime") LocalDateTime startTime); List getMessageUserCount(@Param("startTime") LocalDateTime startTime); }