ZhuDongming
2019-07-25 4e58ec2f90f326c9d552cc5c1ecbfecfa3be1647
新增无人机在时间段查询sensor值集合的Service接口
1 files modified
14 ■■■■■ changed files
src/main/java/com/moral/service/HistoryMinutelyService.java 14 ●●●●● patch | view | raw | blame | history
src/main/java/com/moral/service/HistoryMinutelyService.java
@@ -9,16 +9,18 @@
@SuppressWarnings("rawtypes")
public interface HistoryMinutelyService {
    Map<String, Object> getDayAQIByDevice(Map<String, Object> parameters);
    Map<String, List> getCompareReport(Map<String, Object> parameters) throws Exception;
    Map<String, Object> getDayAQIByDevice(Map<String, Object> parameters);
    List<Map<String, Object>> getMonitorPointOrDeviceAvgData(Map<String, Object> parameters) throws Exception;
    Map<String, List> getCompareReport(Map<String, Object> parameters) throws Exception;
    Map<String, Object> getMonthAverageBySensor(Map<String, Object> parameters);
    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;
    void convertQueryParam(Map<String, Object> parameters) throws ParseException;
    List<Map<String, Object>> getSensorData(Map<String, Object> parameters) throws Exception;
}