zmc
2023-09-27 3543b001e3da2cb801d7dfa27b396db4edbfb740
src/main/java/com/job/zsc/service/FugitiveDustService.java
@@ -1,9 +1,6 @@
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 com.job.zsc.pojo.*;
import java.util.List;
@@ -22,4 +19,38 @@
    PageBean pageAnalysisTime(Integer page, Integer pageSize, String siteName, String beginTime, String endTime);
    List<DustExceptionType> getExceptionType();
    PageBean getExceptionData(Integer page, Integer pageSize, String siteName, String[] exceptionType, String beginTime, String endTime);
    List<DustExceptionData> getExceptionSitenameAndCode(String exceptionType, String beginTime, String endTime);
    Integer exceptionNum(String exceptionType, String beginTime, String endTime);
    List<DustSiteData> conditonQueryHistoryData(String siteName, String beginTime, String endTime);
    List<DustExceptionData> getExceptionAllData(String siteName, String[] exceptionType, String beginTime, String endTime);
    List<DustExceptionData> exceptionSiteNum();
    List<AnalysisDustData> analysisAll(String siteName, String beginTime, String endTime);
    List<DustSiteData> conditonQueryhistoryallData(String siteName, String mnCode, String beginTime, String endTime, String[] scenarioType);
    /*新增审计信息*/
    void addAuditNotes(AuditInfo auditInfo);
    List<AuditInfo> getAuditAllData();
    void update(AuditInfo auditInfo);
    List<DustExceptionData> getHasAuditedData(String beginTime, String endTime);
    void setting(DustDataAccessSetting dustDataAccessSetting);
    List<DustExceptionData> getSiteNameByTimeAndExceptionType(String[] exceptionType, String beginTime, String endTime);
    List<AnalysisDustData> analysisdataByType(String month,String type);
    List<AnalysisDustData> analysisdataByTimeAndType(String beginTime, String endTime, String type);
}