| | |
| | | import com.moral.common.bean.PageBean; |
| | | import com.moral.entity.Sensor; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface SensorService { |
| | | List<Sensor> queryAll(); |
| | | |
| | |
| | | List<Sensor> queryListByVersionNo(Integer versionNo); |
| | | |
| | | public void addOrModify(Sensor sensor); |
| | | |
| | | public void deleteByIds(Integer... ids); |
| | | |
| | | List<Sensor> queryByOrgId(Integer organizationId); |
| | | |
| | | public List<Sensor> getAllSensors(); |
| | | |
| | | |
| | | Map<String, Object> getSensorBySensorKey(String SensorKey); |
| | | |
| | | List<Map<String, Object>> getSensorByDeviceId(String id); |
| | | |
| | | List<Map<String, Object>> getSensorByDId(String id); |
| | | |
| | | List<Map<String, Object>> getSensorByMonitorPointId(String monitor_point_id); |
| | | |
| | | Map<String, String> getSensorsMap(Map<String, Object> parameters) throws Exception; |
| | | |
| | | List<Map<String, String>> getSensorsMaps(String mac); |
| | | |
| | | List<Map<String, String>> getSensorsAllMap(); |
| | | |
| | | List<Sensor> selectSenosrsByOrgId(Map<String, Object> parameters); |
| | | |
| | | List<List<String>> listSensorInfos(String[] sensorsResult); |
| | | |
| | | List<List<Map<String, Object>>> listExcelDatas(List<List<String>> sensorInfos, List<Map<String, Object>> list); |
| | | |
| | | List<String> getSensorKeys(); |
| | | |
| | | |
| | | } |