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.
|
|
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<UserCountVO> getEmailUserCount(@Param("startTime") LocalDateTime startTime);
List<UserCountVO> getGoogleUserCount(@Param("startTime") LocalDateTime startTime);
List<UserCountVO> getMessageUserCount(@Param("startTime") LocalDateTime startTime);}
|