package com.job.zsc.service; import com.job.zsc.pojo.AnalysisDustData; import com.job.zsc.pojo.DustExceptionType; import com.job.zsc.pojo.DustSiteData; import com.job.zsc.pojo.PageBean; import java.util.List; public interface FugitiveDustService { PageBean page(Integer page, Integer pageSize, String siteName, String mnCode, String beginTime, String endTime,String[] scenarioType); List scenarioData(); List allSiteName(); List analysisdata( String siteName,String beginTime, String endTime); List analysisByTime(String siteName, String beginTime, String endTime); PageBean pageAnalysisTime(Integer page, Integer pageSize, String siteName, String beginTime, String endTime); List getExceptionType(); }