上传代码

This commit is contained in:
zhangdongxu
2017-12-19 14:55:52 +08:00
commit 13acafd43d
4777 changed files with 898870 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
/**
* @Title: DfLogSearchDao.java
* @Package com.nis.web.dao
* @Description: TODO(用一句话描述该文件做什么)
* @author ddm
* @date 2016年9月5日 下午44:6:25
* @version V1.0
*/
package com.nis.web.dao;
import java.util.List;
import com.nis.domain.ControlLog;
import com.nis.domain.LogEntity;
import com.nis.domain.restful.DfDnsLog;
import com.nis.domain.restful.DfFtpLog;
import com.nis.domain.restful.DfHttpKeywordLog;
import com.nis.domain.restful.DfHttpReqLog;
import com.nis.domain.restful.DfHttpResLog;
import com.nis.domain.restful.DfIpPortLog;
import com.nis.domain.restful.DfIpsecLog;
import com.nis.domain.restful.DfL2tpLog;
import com.nis.domain.restful.DfMailLog;
import com.nis.domain.restful.DfOpenvpnLog;
import com.nis.domain.restful.DfPptpLog;
import com.nis.domain.restful.DfSshLog;
import com.nis.domain.restful.DfSslLog;
import com.nis.domain.restful.DfTunnelRandomLog;
/**
* @ClassName: DfLogSearchDao
* @Description: TODO(这里用一句话描述这个类的作用)
* @author (ddm)
* @date 2016年9月5日 下午2:6:25
* @version V1.0
*/
@MyBatisDao
public interface DfLogSearchDao extends CrudDao<LogEntity> {
List<DfIpPortLog> findIpPortLogs(DfIpPortLog log);
List<DfHttpReqLog> findHttpReqLogs(DfHttpReqLog log);
List<DfHttpResLog> findHttpResLogs(DfHttpResLog log);
List<DfHttpKeywordLog> findHttpKeywordLogs(DfHttpKeywordLog log);
List<DfMailLog> findMailLogs(DfMailLog log);
List<DfDnsLog> findDnsLogs(DfDnsLog log);
List<DfFtpLog> findFtpLogs(DfFtpLog log);
List<DfPptpLog> findPptpLogs(DfPptpLog log);
List<DfL2tpLog> findL2tpLogs(DfL2tpLog log);
List<DfIpsecLog> findIpsecLogs(DfIpsecLog log);
List<DfOpenvpnLog> findOpenvpnLogs(DfOpenvpnLog log);
List<DfSshLog> findSshLogs(DfSshLog log);
List<DfSslLog> findSslLogs(DfSslLog log);
List<DfTunnelRandomLog> findTunnelRandomLogs(DfTunnelRandomLog log);
List<DfIpPortLog> findIpPortLogsCluster(DfIpPortLog log);
List<DfHttpReqLog> findHttpReqLogsCluster(DfHttpReqLog log);
List<DfHttpResLog> findHttpResLogsCluster(DfHttpResLog log);
List<DfHttpKeywordLog> findHttpKeywordLogsCluster(DfHttpKeywordLog log);
List<DfMailLog> findMailLogsCluster(DfMailLog log);
List<DfDnsLog> findDnsLogsCluster(DfDnsLog log);
List<DfFtpLog> findFtpLogsCluster(DfFtpLog log);
List<DfPptpLog> findPptpLogsCluster(DfPptpLog log);
List<DfL2tpLog> findL2tpLogsCluster(DfL2tpLog log);
List<DfIpsecLog> findIpsecLogsCluster(DfIpsecLog log);
List<DfOpenvpnLog> findOpenvpnLogsCluster(DfOpenvpnLog log);
List<DfSshLog> findSshLogsCluster(DfSshLog log);
List<DfSslLog> findSslLogsCluster(DfSslLog log);
List<DfTunnelRandomLog> findTunnelRandomLogsCluster(DfTunnelRandomLog log);
}