fengxiang
2018-08-24 41863d2c44c03dca9f0bff4e3fad2be454362da0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.moral.service;
 
import java.util.List;
import java.util.Map;
 
import com.moral.common.bean.PageBean;
import com.moral.entity.MonitorPoint;
 
public interface MonitorPointService {
 
    List<MonitorPoint> getMonitorPointsByAreaName(Map<String, Object> parameters);
 
    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);
}