ZhuDongming
2020-06-12 69a3e436bedfc828930e08cbbac7df57f4fd83cb
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;
@@ -9,14 +10,35 @@
public interface MonitorPointService {
   List<MonitorPoint> getMonitorPointsByAreaName(Map<String, Object> parameters);
   public PageBean queryByPageBean(PageBean pageBean);
    MonitorPoint selectWithRelationById(Integer id);
    List<MonitorPoint> queryWithStateByMap(Map<String, Object> params);
    public PageBean queryByPageBean(PageBean pageBean);
    MonitorPoint queryWithRelationById(Integer id);
    public void addOrModify(MonitorPoint monitorPoint);
   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);
}