src/main/java/com/moral/service/MonitorPointService.java
@@ -1,5 +1,6 @@
package com.moral.service;
import java.util.Collection;
import java.util.List;
import java.util.Map;
@@ -22,4 +23,22 @@
   
   List<MonitorPoint> getMonitorPointsByName(String name);
    List<Map<String,String>> queryMonitroPointsState(List<Integer> idList);
    Integer countOfSubOrgs(Integer orgId);
    List<MonitorPoint> getMonitorPointsByOrganizationId(Integer orgId);
   List<MonitorPoint> getMonitorPointsByRegion(Map<String, Object> parameters);
    List<Integer> queryVersionsById(Integer id);
    MonitorPoint queryMonitorPointById(Integer mpointId);
   List<MonitorPoint> getMonitorPointsAndDevicesByRegion(Map<String, Object> parameters);
   Collection<Object> getDevicesStateByRegion(Map<String, Object> parameters);
   void isCompensateCalculation(Map<String, Object> parameters);
   Map<String, Object> selectAllById(String id);
}