zmc
2023-08-15 d95f78488e734c1defcad4af8b7e79c712937111
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.job.zsc.mapper;
 
import com.job.zsc.pojo.AnalysisDustData;
import com.job.zsc.pojo.DustExceptionType;
import com.job.zsc.pojo.DustSiteData;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
 
import java.util.List;
 
@Mapper
public interface FugitiveDustMapper {
 
    List<DustSiteData> conditonQueryDustHistoryData(String siteName, String mnCode,String beginTime, String endTime,@Param("scenarioType") String[] scenarioType) ;
 
    @Select("select distinct Type_Name from monitor_site")
    List<DustSiteData> scenarioData();
 
    @Select("select DISTINCT name from ja_t_dust_site_info  ")
    List<DustSiteData> allSiteName();
 
    List<AnalysisDustData> analysisdata( String siteName,String beginTime, String endTime);
 
    List<AnalysisDustData> analysisByTime(String siteName, String beginTime, String endTime);
 
    @Select("select DISTINCT exception,exception_type from dust_exception_data")
    List<DustExceptionType> getExceptionType();
}