src/main/java/com/moral/service/impl/DeviceServiceImpl.java
@@ -151,5 +151,12 @@ } } @Override public List<Device> getDevicesByMonitorPointId(Integer monitorPointId) { Device device = new Device(); device.setMonitorPointId(monitorPointId); device.setIsDelete(Constants.IS_DELETE_FALSE); return deviceMapper.select(device); } }