| | |
| | | package com.moral.service;
|
| | |
|
| | | import com.moral.entity.charts.LineChartCriteria;
|
| | | import com.moral.entity.charts.PairData;
|
| | |
|
| | | 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, List<Object>> getCompareReport(Map<String, Object> parameters) throws Exception;
|
| | | Map<String, List> getCompareReport(Map<String, Object> parameters) throws Exception;
|
| | |
|
| | | List<Map<String, Object>> getMonitorPointOrDeviceAvgData(Map<String, Object> parameters) throws Exception;
|
| | |
|
| | |
| | |
|
| | |
|
| | | Map<String, List<List<Double>>> queryLineChartDateByCrieria(LineChartCriteria lineChartCriteria);
|
| | |
|
| | | void convertQueryParam(Map<String, Object> parameters) throws ParseException;
|
| | | }
|