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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.flightfeather.monitor.service;
 
import com.flightfeather.monitor.pojo.DeviceInfo;
import com.flightfeather.monitor.pojo.FumeAbnormalData;
import com.flightfeather.monitor.pojo.FumeHistoryData;
import com.flightfeather.monitor.pojo.PageBean;
 
import java.util.List;
 
 
public interface Vue3FumeService {
 
    List<FumeHistoryData> findall();
 
    List<FumeHistoryData> conditonQueryExceedingData(String devId, String beginTime, String endTime);
 
    List<FumeHistoryData> conditonQueryHistoryData(String devId, String beginTime, String endTime);
 
    List<DeviceInfo> allDeviceInfo();
 
    List<FumeAbnormalData> allAbnormalData();
 
    List<FumeAbnormalData> conditonQueryAbnormalData(String devId, String beginTime, String endTime);
 
    List<FumeAbnormalData> conditonQueryAbnormalData1(String devId, String exceptionValue, String beginTime, String endTime);
 
    List<FumeAbnormalData> findShopName(String exceptionType);
 
    List<FumeHistoryData> exportByShopName(String[] shops, String exportBeginTime, String exportEndTime);
 
    List<FumeHistoryData> findLaststById(String[] shops);
 
    List<FumeAbnormalData> findExceptionType();
 
    List<FumeAbnormalData> conditonQueryAbnormalData2(String devId, String[] exceptionValue, String beginTime, String endTime);
 
    PageBean page(Integer page, Integer pageSize, String devId, String[] exceptionValue, String beginTime, String endTime);
 
    List<FumeAbnormalData> findShopNameBYTime(String exceptionType, String beginTime, String endTime);
 
    List<FumeAbnormalData>  earlyAndLastTime();
 
    List<FumeHistoryData> lastestTimeFromHistoryData();
 
    List<FumeHistoryData> shopnamePythonUse();
 
    Integer exceptionNum(String exceptionType, String beginTime, String endTime);
 
 
//    String shopNum();
}