package com.job.zsc.service; import com.job.zsc.pojo.DeviceInfo; import com.job.zsc.pojo.FumeAbnormalData; import com.job.zsc.pojo.FumeHistoryData; import com.job.zsc.pojo.PageBean; import org.springframework.stereotype.Service; import java.util.List; public interface Vue3FumeService { List findall(); List conditonQueryExceedingData(String devId, String beginTime, String endTime); List conditonQueryHistoryData(String devId, String beginTime, String endTime); List allDeviceInfo(); List allAbnormalData(); List conditonQueryAbnormalData(String devId, String beginTime, String endTime); List conditonQueryAbnormalData1(String devId, String exceptionValue, String beginTime, String endTime); List findShopName(String exceptionType); List exportByShopName(String[] shops, String exportBeginTime, String exportEndTime); List findLaststById(String[] shops); List findExceptionType(); List conditonQueryAbnormalData2(String devId, String[] exceptionValue, String beginTime, String endTime); PageBean page(Integer page, Integer pageSize, String devId, String[] exceptionValue, String beginTime, String endTime); List findShopNameBYTime(String exceptionType, String beginTime, String endTime); List earlyAndLastTime(); // String shopNum(); }