package com.nis.web.dao; import java.util.List; import com.nis.domain.restful.NtcAttrTypeReport; import com.nis.domain.restful.NtcDestipCountryReport; import com.nis.domain.restful.NtcEntranceReport; import com.nis.domain.restful.NtcIpRangeReport; import com.nis.domain.restful.NtcLwhhReport; import com.nis.domain.restful.NtcPzReport; import com.nis.domain.restful.NtcRadiusReport; import com.nis.domain.restful.NtcServiceReport; import com.nis.domain.restful.NtcSrcipDomesticReport; import com.nis.domain.restful.NtcTagReport; import com.nis.domain.restful.NtcURLIpReport; /** * * @ClassName:NtcReportDao * @Description:TODO(这里用一句话描述这个类的作用) * @author (zdx) * @date 2018年7月11日 下午5:47:55 * @version V1.0 */ @MyBatisDao public interface NtcReportDao extends CrudDao { List findNtcPzReport(NtcPzReport pz); List findNtcServiceReport(NtcServiceReport pz); List findNtcTagReport(NtcTagReport pz); List findNtcAttrTypeReport(NtcAttrTypeReport pz); List findNtcLwhhReport(NtcLwhhReport pz); List findNtcSrcipDomesticReport(NtcSrcipDomesticReport pz); List findNtcDestipCountryReport(NtcDestipCountryReport pz); List findNtcEntranceReport(NtcEntranceReport pz); List findNtcIpURLReport(NtcURLIpReport pz); List findAccounList(NtcRadiusReport pz); List findNasIpList(NtcRadiusReport pz); List findNtcRadiusReport(NtcRadiusReport pz); List findNtcIpRangeReport(NtcIpRangeReport pz); void insertNtcIpRangeBatch(List list); void truncateNtcIpRange(); }