From 3c79960dcc900d33b99587e7fb5f1baf46c0a255 Mon Sep 17 00:00:00 2001 From: 于紫祥_1901 <email@yuzixiang_1910> Date: Thu, 13 Aug 2020 13:01:23 +0800 Subject: [PATCH] 风场图update --- src/main/java/com/moral/service/HistoryHourlyService.java | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/moral/service/HistoryHourlyService.java b/src/main/java/com/moral/service/HistoryHourlyService.java index 71286d2..2d6f9f5 100644 --- a/src/main/java/com/moral/service/HistoryHourlyService.java +++ b/src/main/java/com/moral/service/HistoryHourlyService.java @@ -1,5 +1,6 @@ package com.moral.service; +import java.util.List; import java.util.Map; import com.moral.entity.Point; @@ -7,5 +8,20 @@ public interface HistoryHourlyService { Map<String, Object> getPollutionSourceData(Map<String, Object> parameters) throws Exception; + Map<String, Object> getPollutionSourceDataByHour(Map<String, Object> parameters) throws Exception; + + Map<String, Object> getPollutionSourceDataAll(Map<String, Object> parameters) throws Exception; + Point getDirPoint(Map<String, Object> parameters) throws Exception; + + //������TVOC������ + String getTVOCByMac(String mac,String time,String sensor); + //������������������ + String getPressureByMac(String mac,String time); + + //������historyHourly��������������� + + Map<String,Object> getDataByMac(String mac,String time); + + List<Map<String, Object>> getDataByTimeSlot(String mac, String startTime, String endTime) throws Exception; } -- Gitblit v1.8.0