jinpengyong
2020-08-05 91c1c308abec43a67335cdebb574940ed41b09cf
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);
}