package com.wgcloud.dto;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
|
import java.io.Serializable;
|
|
/**
|
* @version v3.3
|
* @ClassName:SnmpExcelChartDto.java
|
* @author: http://www.wgstart.com
|
* @date: 2022年9月14日
|
* @Description: snmp设备状态趋势图excel
|
* @Copyright: 2019-2022 wgcloud. All rights reserved.
|
*/
|
public class SnmpExcelChartDto implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
|
//时间戳
|
@ExcelProperty(value = "上报时间", index = 0)
|
@ColumnWidth(18)
|
private String datetime;
|
|
//下行速率
|
@ExcelProperty(value = "下行速率(MB/s)", index = 1)
|
@ColumnWidth(18)
|
private String recvAvg;
|
|
//上行速率
|
@ExcelProperty(value = "上行速率(MB/s)", index = 2)
|
@ColumnWidth(18)
|
private String sentAvg;
|
|
//CPU使用率
|
@ExcelProperty(value = "CPU使用率%", index = 3)
|
@ColumnWidth(18)
|
private String cpuPer;
|
|
//内存使用率
|
@ExcelProperty(value = "内存使用率%", index = 4)
|
@ColumnWidth(18)
|
private String memPer;
|
|
|
public String getDatetime() {
|
return datetime;
|
}
|
|
public void setDatetime(String datetime) {
|
this.datetime = datetime;
|
}
|
|
public String getRecvAvg() {
|
return recvAvg;
|
}
|
|
public void setRecvAvg(String recvAvg) {
|
this.recvAvg = recvAvg;
|
}
|
|
public String getSentAvg() {
|
return sentAvg;
|
}
|
|
public void setSentAvg(String sentAvg) {
|
this.sentAvg = sentAvg;
|
}
|
|
public String getCpuPer() {
|
return cpuPer;
|
}
|
|
public void setCpuPer(String cpuPer) {
|
this.cpuPer = cpuPer;
|
}
|
|
public String getMemPer() {
|
return memPer;
|
}
|
|
public void setMemPer(String memPer) {
|
this.memPer = memPer;
|
}
|
}
|