jinpengyong
2020-10-15 d2b21bc8fd32da4ac29518a0c07f95c140f287b3
src/main/java/com/moral/service/HistoryMinutelyService.java
@@ -1,31 +1,41 @@
package com.moral.service;
import java.text.ParseException;
import java.util.List;
import java.util.Map;
import com.moral.entity.charts.LineChartCriteria;
@SuppressWarnings("rawtypes")
public interface HistoryMinutelyService {
    Map<String, Object> getDayAQIByDevice(Map<String, Object> parameters);
    Map<String, Object> getHourAQIByDevice(Map<String, Object> parameters);
    Map<String, List> getCompareReport(Map<String, Object> parameters) throws Exception;
    List<Map<String, Object>> getMonitorPointOrDeviceAvgData(Map<String, Object> parameters) throws Exception;
    Map<String, Object> getMonthAverageBySensor(Map<String, Object> parameters);
    Map<String, List<List<Double>>> queryLineChartDateByCrieria(LineChartCriteria lineChartCriteria);
    void convertQueryParam(Map<String, Object> parameters) throws ParseException;
    List<List<Map<String, Object>>> getSensorData(Map<String, Object> parameters) throws Exception;
    List<Map<String, Object>> getDevicesAvgDataToExcel(Map<String, Object> parameters) throws Exception;
    List<Map<String, Object>> getDevicesSensorsAvgDataToExcel(Map<String, Object> parameters) throws Exception;
}
package com.moral.service;
import java.text.ParseException;
import java.util.List;
import java.util.Map;
import com.moral.entity.charts.LineChartCriteria;
@SuppressWarnings("rawtypes")
public interface HistoryMinutelyService {
    Map<String, Object> getDayAQIByDevice(Map<String, Object> parameters);
    Map<String, Object> getHourAQIByDevice(Map<String, Object> parameters);
    Map<String, List> getCompareReport(Map<String, Object> parameters) throws Exception;
    List<Map<String, Object>> getMonitorPointOrDeviceAvgData(Map<String, Object> parameters) throws Exception;
    List<Map<String, Object>> get(Map<String, Object> parameters) throws Exception;
    Map<String, Object> getMonthAverageBySensor(Map<String, Object> parameters);
    Map<String, Object> getAverageBySensor(Map<String, Object> parameters);
    Map<String, List<List<Double>>> queryLineChartDateByCrieria(LineChartCriteria lineChartCriteria);
    void convertQueryParam(Map<String, Object> parameters) throws ParseException;
    List<List<Map<String, Object>>> getSensorData(Map<String, Object> parameters) throws Exception;
    List<Map<String, Object>> getDevicesAvgDataToExcel(Map<String, Object> parameters) throws Exception;
    List<Map<String, Object>> getDevicesSensorsAvgDataToExcel(Map<String, Object> parameters) throws Exception;
    List<Map<String,Object>> get5MinutesOrHalfHour(Map<String, Object> parameters) throws ParseException;
    List<Map<String, Object>> getMultiDeviceSensorData(Map<String, Object> parameters) throws Exception;
}