lizijie
2019-07-10 e97c393e23f4c015a44b5fef5fd26ae288bc6c0f
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;
@@ -21,5 +22,23 @@
   public void deleteByIds(Integer... ids);
   
   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);
}