package com.genersoft.iot.vmp.common; import java.util.List; public class SystemAllInfo { private List cpu; private List mem; private List net; public List getCpu() { return cpu; } public void setCpu(List cpu) { this.cpu = cpu; } public List getMem() { return mem; } public void setMem(List mem) { this.mem = mem; } public List getNet() { return net; } public void setNet(List net) { this.net = net; } }