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);
|
|
List<MonitorPoint> getMonitorPointsByOrganizationId(Integer orgId);
|
}
|