/** * @Title: DjStatLogDao.java * @Package com.nis.web.dao * @Description: TODO(用一句话描述该文件做什么) * @author (ddm) * @date 2016年9月13日 上午11:21:31 * @version V1.0 */ package com.nis.web.dao; import java.util.List; import com.nis.domain.LogEntity; import com.nis.domain.restful.DjAttrStatLogDaily; import com.nis.domain.restful.DjAttrStatLogMonth; import com.nis.domain.restful.DjDestIpCounrtyStatLogDaily; import com.nis.domain.restful.DjDestIpCounrtyStatLogMonth; import com.nis.domain.restful.DjEntrStatLogDaily; import com.nis.domain.restful.DjEntrStatLogMonth; import com.nis.domain.restful.DjLwhhStatLogDaily; import com.nis.domain.restful.DjLwhhStatLogMonth; import com.nis.domain.restful.DjSrcIpDomesticStatLogDaily; import com.nis.domain.restful.DjSrcIpDomesticStatLogMonth; import com.nis.domain.restful.DjStatLogDaily; import com.nis.domain.restful.DjStatLogMonth; import com.nis.domain.restful.DjTagStatLogDaily; import com.nis.domain.restful.DjTagStatLogMonth; /** * @ClassName: DjStatLogDao * @Description: TODO(这里用一句话描述这个类的作用) * @author (ddm) * @date 2016年9月13日 上午11:21:31 * @version V1.0 */ @MyBatisDao public interface DjStatLogDao extends CrudDao { List djStatLogDaily(DjStatLogDaily daily); List djStatLogMonth(DjStatLogMonth mongth); List djTagStatLogDaily(DjTagStatLogDaily daily); List djTagStatLogMonth(DjTagStatLogMonth mongth); List djAttrStatLogDaily(DjAttrStatLogDaily daily); List djAttrStatLogMonth(DjAttrStatLogMonth mongth); List djEntrStatLogDaily(DjEntrStatLogDaily daily); List djEntrStatLogMonth(DjEntrStatLogMonth mongth); List djLwhhStatLogDaily(DjLwhhStatLogDaily daily); List djLwhhStatLogMonth(DjLwhhStatLogMonth mongth); List djSrcIpDomesticStatLogDaily(DjSrcIpDomesticStatLogDaily daily); List djSrcIpDomesticStatLogMonth(DjSrcIpDomesticStatLogMonth mongth); List djDestIpCounrtyStatLogDaily(DjDestIpCounrtyStatLogDaily daily); List djDestIpCounrtyStatLogMonth(DjDestIpCounrtyStatLogMonth mongth); }