| | |
| | | import java.util.Collection;
|
| | | import java.util.List;
|
| | | import java.util.Map;
|
| | | import java.util.Set;
|
| | |
|
| | | import com.alibaba.fastjson.JSONObject;
|
| | | import com.moral.common.bean.PageBean;
|
| | | import com.moral.entity.Device;
|
| | | import com.moral.entity.MonitorPoint;
|
| | | import org.apache.xmlbeans.impl.jam.mutable.MPackage;
|
| | |
|
| | | public interface MonitorPointService {
|
| | |
|
| | |
| | |
|
| | | List<MonitorPoint> getMonitorPointsByOrganizationId(Integer orgId);
|
| | |
|
| | | List<MonitorPoint> getMonitorPointsByOrganizationIds(Set<Integer> orgIds);
|
| | |
|
| | | List<MonitorPoint> getMonitorPointsByRegion(Map<String, Object> parameters);
|
| | |
|
| | | List<MonitorPoint> getMonitorPointsAndDevicesByRegionNew(Map<String, Object> parameters);
|
| | |
|
| | | List<Integer> queryVersionsById(Integer id);
|
| | |
|
| | |
| | |
|
| | | //获取公司信息,通过id
|
| | | JSONObject getMonitorPointById(int id, String Time, int i, String sensor);
|
| | |
|
| | | JSONObject getMacList(int id);
|
| | |
|
| | | List<MonitorPoint> getMonitorPointListByAccountId(int id);
|
| | |
|
| | | MonitorPoint byIdGetMonitorPoint(int id);
|
| | |
|
| | | String getOrgIdByMac(String mac);
|
| | | }
|