From 26cd7dbaf9394ff26f5229b18cfdb72c203a6bc3 Mon Sep 17 00:00:00 2001 From: gaofw189 <gaofw189@chinatelecom.cn> Date: 星期二, 10 一月 2023 15:55:56 +0800 Subject: [PATCH] 修复WVP作为下级平台接收DeviceStatus指令固定响应的问题 --- 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