package com.nis.web.dao.dashboard; import java.util.Date; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Param; import com.nis.domain.restful.dashboard.TrafficHttpStatistic; import com.nis.web.dao.MyBatisDao; @MyBatisDao public interface TrafficHttpStatisticDao { TrafficHttpStatistic getMaxStatTime(); List websiteList(@Param("statTime")Date statTime); //获取域名分类之后属于的网站 List getDomainByWebsiteList(@Param("statTime")Date statTime); Long preWebsiteListCount(@Param("websiteServiceId") Integer websiteServiceId,@Param("statTime") Date statTime); List getDomainByWebsiteServiceId(@Param("websiteServiceId") Integer websiteServiceId,@Param("statTime") Date statTime); Map websiteDomainOthers(@Param("webIdList") List webIdList,@Param("websiteServiceId") Integer websiteServiceId,@Param("statTime") Date statTime); List getDomainByTopicList(@Param("statTime") Date statTime,@Param("endTime")Date endTime); List getUiWebsiteDomainTopicList( ); List getDomainByTopicId( @Param("statTime")Date statTime ,@Param("endTime")Date endTime); }