This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-argus-service/src/main/java/com/nis/web/dao/dashboard/TrafficHttpStatisticDao.java

25 lines
1.1 KiB
Java
Raw Normal View History

2018-07-13 19:39:04 +08:00
package com.nis.web.dao.dashboard;
2018-10-26 14:41:27 +08:00
import java.util.Date;
2018-07-13 19:39:04 +08:00
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 {
2018-10-26 14:41:27 +08:00
TrafficHttpStatistic getMaxStatTime();
List<TrafficHttpStatistic> websiteList(@Param("statTime")Date statTime);
//获取域名分类之后属于的网站
2018-10-26 14:41:27 +08:00
List<TrafficHttpStatistic> getDomainByWebsiteList(@Param("statTime")Date statTime);
Integer preWebsiteListCount(@Param("websiteServiceId") Integer websiteServiceId,@Param("statTime") Date statTime);
List<Map> getDomainByWebsiteServiceId(@Param("websiteServiceId") Integer websiteServiceId,@Param("statTime") Date statTime);
Map websiteDomainOthers(@Param("webIdList") List webIdList,@Param("websiteServiceId") Integer websiteServiceId,@Param("statTime") Date statTime);
2018-10-26 14:41:27 +08:00
List<Map> getDomainByTopicList(@Param("statTime") Date statTime);
2018-10-26 14:41:27 +08:00
List<Map> getDomainByTopicId(@Param("topicId")Object TopicId,@Param("statTime")Date statTime);
2018-07-13 19:39:04 +08:00
}