From 5c427a35595e2deb2c1a025ff9a4c164d498e01d Mon Sep 17 00:00:00 2001 From: jinpengyong <jpy123456> Date: Fri, 24 Dec 2021 11:00:44 +0800 Subject: [PATCH] 行业贡献率:行业列表,传感器列表接口 --- screen-api/src/main/java/com/moral/api/pojo/vo/monitorPoint/MonitorPointsVO.java | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/screen-api/src/main/java/com/moral/api/pojo/vo/monitorPoint/MonitorPointsVO.java b/screen-api/src/main/java/com/moral/api/pojo/vo/monitorPoint/MonitorPointsVO.java index 9f0d036..fd1d4bc 100644 --- a/screen-api/src/main/java/com/moral/api/pojo/vo/monitorPoint/MonitorPointsVO.java +++ b/screen-api/src/main/java/com/moral/api/pojo/vo/monitorPoint/MonitorPointsVO.java @@ -31,6 +31,7 @@ DeviceVO deviceVO = deviceConvert(device); deviceVOS.add(deviceVO); } + monitorPointVO.setId(monitorPoint.getId()); monitorPointVO.setName(monitorPoint.getName()); monitorPointVO.setLatitude(monitorPoint.getLatitude()); monitorPointVO.setLongitude(monitorPoint.getLongitude()); @@ -45,6 +46,7 @@ DeviceVO vo = new DeviceVO(); vo.setName(device.getName()); vo.setMac(device.getMac()); + vo.setState(device.getState()); vo.setLatitude(device.getLatitude()); vo.setLongitude(device.getLongitude()); return vo; -- Gitblit v1.8.0