fengxiang
2018-02-28 a0341d4100c15c57fb645fd1f23225563e306712
src/main/java/com/moral/service/MonitorPointService.java
@@ -9,14 +9,17 @@
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);
}