From bc6aaea416da40038dee2df1b3de4a1581da2a48 Mon Sep 17 00:00:00 2001
From: jinpengyong <jpy123456>
Date: Wed, 29 Jul 2020 10:07:44 +0800
Subject: [PATCH] 臭氧预测update,根据城市名查询预测和实际数据

---
 src/main/java/com/moral/service/MonitorPointService.java |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/moral/service/MonitorPointService.java b/src/main/java/com/moral/service/MonitorPointService.java
index 268b7c3..9f2247b 100644
--- a/src/main/java/com/moral/service/MonitorPointService.java
+++ b/src/main/java/com/moral/service/MonitorPointService.java
@@ -4,7 +4,9 @@
 import java.util.List;
 import java.util.Map;
 
+import com.alibaba.fastjson.JSONObject;
 import com.moral.common.bean.PageBean;
+import com.moral.entity.Device;
 import com.moral.entity.MonitorPoint;
 
 public interface MonitorPointService {
@@ -41,4 +43,14 @@
 	void isCompensateCalculation(Map<String, Object> parameters);
 	
 	Map<String, Object> selectAllById(String id);
+
+    //������monitorPointId������������������������������������
+    List<Device> getDeviceList(int id);
+
+    //���������������������������id
+    JSONObject getMonitorPointById(int id, String Time, int i, String sensor);
+
+    JSONObject getMacList(int id);
+
+    List<MonitorPoint> getMonitorPointListByAccountId(int id);
 }

--
Gitblit v1.8.0