| | |
| | | |
| | | import com.moral.api.entity.Device; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.moral.api.pojo.vo.device.AppDeviceVo; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | |
| | | //根据站点id获取设备列表 |
| | | List<Device> getDevicesByMonitorPointId(Integer monitorPointId); |
| | | |
| | | List<Device> getDevicesByMonitorPointId(List<Integer> monitorPointId); |
| | | |
| | | //根据macs获取公有因子信息 |
| | | Map<String, Object> getSensorsByMac(Map<String,Object> params); |
| | |
| | | */ |
| | | Device getDeviceUnitAlramInforByMac(String mac); |
| | | |
| | | /** |
| | | * 模糊查询 |
| | | * @param mac |
| | | * @return |
| | | */ |
| | | List<AppDeviceVo> getFuzzySearch(String mac); |
| | | |
| | | /** |
| | | * 根据站点查询设备 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | List<Device> getOrganizationDevice(Integer id); |
| | | |
| | | } |