2018-07-12 16:34:17 +08:00
|
|
|
package com.nis.web.dao;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2018-07-16 14:36:43 +08:00
|
|
|
import com.nis.domain.restful.NtcAttrTypeReport;
|
|
|
|
|
import com.nis.domain.restful.NtcDestipCountryReport;
|
|
|
|
|
import com.nis.domain.restful.NtcEntranceReport;
|
2018-12-16 11:10:25 +06:00
|
|
|
import com.nis.domain.restful.NtcIpURLReport;
|
2018-07-16 14:36:43 +08:00
|
|
|
import com.nis.domain.restful.NtcLwhhReport;
|
2018-07-12 16:34:17 +08:00
|
|
|
import com.nis.domain.restful.NtcPzReport;
|
2018-10-31 19:33:04 +08:00
|
|
|
import com.nis.domain.restful.NtcRadiusReport;
|
2018-07-16 14:36:43 +08:00
|
|
|
import com.nis.domain.restful.NtcServiceReport;
|
|
|
|
|
import com.nis.domain.restful.NtcSrcipDomesticReport;
|
|
|
|
|
import com.nis.domain.restful.NtcTagReport;
|
2018-12-16 11:10:25 +06:00
|
|
|
import com.nis.domain.restful.NtcURLReport;
|
2018-07-12 16:34:17 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @ClassName:NtcReportDao
|
|
|
|
|
* @Description:TODO(这里用一句话描述这个类的作用)
|
|
|
|
|
* @author (zdx)
|
|
|
|
|
* @date 2018年7月11日 下午5:47:55
|
|
|
|
|
* @version V1.0
|
|
|
|
|
*/
|
|
|
|
|
@MyBatisDao
|
|
|
|
|
public interface NtcReportDao extends CrudDao {
|
|
|
|
|
List<NtcPzReport> findNtcPzReport(NtcPzReport pz);
|
2018-07-16 14:36:43 +08:00
|
|
|
List<NtcServiceReport> findNtcServiceReport(NtcServiceReport pz);
|
|
|
|
|
List<NtcTagReport> findNtcTagReport(NtcTagReport pz);
|
|
|
|
|
List<NtcAttrTypeReport> findNtcAttrTypeReport(NtcAttrTypeReport pz);
|
|
|
|
|
List<NtcLwhhReport> findNtcLwhhReport(NtcLwhhReport pz);
|
|
|
|
|
List<NtcSrcipDomesticReport> findNtcSrcipDomesticReport(NtcSrcipDomesticReport pz);
|
|
|
|
|
List<NtcDestipCountryReport> findNtcDestipCountryReport(NtcDestipCountryReport pz);
|
|
|
|
|
List<NtcEntranceReport> findNtcEntranceReport(NtcEntranceReport pz);
|
2018-12-16 11:10:25 +06:00
|
|
|
List<NtcIpURLReport> findNtcIpURLReport(NtcURLReport pz);
|
2018-10-31 19:33:04 +08:00
|
|
|
List<NtcRadiusReport> findAccounList(NtcRadiusReport pz);
|
|
|
|
|
List<NtcRadiusReport> findNasIpList(NtcRadiusReport pz);
|
|
|
|
|
List<NtcRadiusReport> findNtcRadiusReport(NtcRadiusReport pz);
|
2018-07-12 16:34:17 +08:00
|
|
|
}
|