首页改造完成,待添加系统信息

This commit is contained in:
648540858
2022-10-24 15:20:35 +08:00
parent 3ffe205082
commit ca891f367c
38 changed files with 882 additions and 168 deletions

View File

@@ -0,0 +1,50 @@
package com.genersoft.iot.vmp.service.bean;
public class MediaServerLoad {
private String id;
private int push;
private int proxy;
private int gbReceive;
private int gbSend;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public int getPush() {
return push;
}
public void setPush(int push) {
this.push = push;
}
public int getProxy() {
return proxy;
}
public void setProxy(int proxy) {
this.proxy = proxy;
}
public int getGbReceive() {
return gbReceive;
}
public void setGbReceive(int gbReceive) {
this.gbReceive = gbReceive;
}
public int getGbSend() {
return gbSend;
}
public void setGbSend(int gbSend) {
this.gbSend = gbSend;
}
}