fengxiang
2018-06-25 9742e7a70ac6e74d114e68ce1bc8f46670b55453
src/main/java/com/moral/service/MonitorPointService.java
@@ -9,11 +9,25 @@
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);
   List<MonitorPoint> getMonitorPointsByOrganizationId(Integer orgId);
   List<MonitorPoint> getMonitorPointsByRegion(Map<String, Object> parameters);
    List<Integer> queryVersionsById(Integer id);
    MonitorPoint queryMonitorPointById(Integer mpointId);
}