From 141b2282675269e7cd18b78bb3b95e33bb46ccc7 Mon Sep 17 00:00:00 2001 From: gaofw189 <gaofw189@chinatelecom.cn> Date: 星期二, 17 一月 2023 17:22:38 +0800 Subject: [PATCH] 修复WVP作为下级平台接收DeviceInfo指令固定响应的问题 --- src/main/java/com/genersoft/iot/vmp/common/SystemAllInfo.java | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/genersoft/iot/vmp/common/SystemAllInfo.java b/src/main/java/com/genersoft/iot/vmp/common/SystemAllInfo.java index eb6a37d..48485da 100644 --- a/src/main/java/com/genersoft/iot/vmp/common/SystemAllInfo.java +++ b/src/main/java/com/genersoft/iot/vmp/common/SystemAllInfo.java @@ -8,6 +8,10 @@ private List<Object> mem; private List<Object> net; + private long netTotal; + + private Object disk; + public List<Object> getCpu() { return cpu; } @@ -31,4 +35,20 @@ public void setNet(List<Object> net) { this.net = net; } + + public Object getDisk() { + return disk; + } + + public void setDisk(Object disk) { + this.disk = disk; + } + + public long getNetTotal() { + return netTotal; + } + + public void setNetTotal(long netTotal) { + this.netTotal = netTotal; + } } -- Gitblit v1.8.0