package com.nis.web.dao; import java.util.Date; import java.util.List; import org.apache.ibatis.annotations.Param; import com.nis.domain.restful.CfgLogInfo; import com.nis.domain.restful.DropInfo; import com.nis.domain.restful.NtcAreaHomeReport; @MyBatisDao public interface SystemHomePageDao { /*List getTrafficAreaStatList(@Param("startTime") Date searchReportStartTime, @Param("endTime") Date searchReportEndTime);*/ List findTrafficAreaStatList(NtcAreaHomeReport ntcAreaHomeReport); //List getCfgSortLogStatList(@Param("startTime") Date startTime, @Param("endTime") Date endTime); List findCfgSortLogStatList(CfgLogInfo cfgLogInfo); //List getBlockAndDropStatListAll(@Param("startTime") Date startTime, @Param("endTime") Date endTime); List findBlockAndDropStatListAll(DropInfo dropInfo); //List getBlockAndDropStatListMinute(@Param("startTime") Date startTime, @Param("endTime") Date endTime); List findBlockAndDropStatListMinute(DropInfo dropInfo); }