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:AppExcelChartDto.java
|
* @author: http://www.wgstart.com
|
* @date: 2022年8月5日
|
* @Description: 导出统计报表趋势图excel
|
* @Copyright: 2019-2022 wgcloud. All rights reserved.
|
*/
|
public class TjbbExcelChartDto implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
|
//时间戳
|
@ExcelProperty(value = "时间", index = 0)
|
@ColumnWidth(18)
|
private String datetime;
|
|
//cpu使用率
|
@ExcelProperty(value = "告警次数", index = 1)
|
@ColumnWidth(18)
|
private Integer warnCount;
|
|
//内存使用率
|
@ExcelProperty(value = "内存%最高", index = 2)
|
@ColumnWidth(18)
|
private Double memPer;
|
|
//cpu使用率
|
@ExcelProperty(value = "CPU%最高", index = 3)
|
@ColumnWidth(18)
|
private Double cpuPer;
|
|
//上行速率最高,MB/s
|
@ExcelProperty(value = "上行速率最高(MB/s)", index = 4)
|
@ColumnWidth(18)
|
private Double txbyt;
|
|
//下行速率最高,MB/s
|
@ExcelProperty(value = "下行速率最高(MB/s)", index = 5)
|
@ColumnWidth(18)
|
private Double rxbyt;
|
|
//连接数量最高
|
@ExcelProperty(value = "连接数量最高", index = 6)
|
@ColumnWidth(18)
|
private Integer netConnections;
|
|
//1分钟系统负载最高
|
@ExcelProperty(value = "1分钟系统负载值最高", index = 7)
|
@ColumnWidth(18)
|
private Double oneLoad;
|
|
//5分钟系统负载最高
|
@ExcelProperty(value = "5分钟系统负载值最高", index = 8)
|
@ColumnWidth(18)
|
private Double fiveLoad;
|
|
//15分钟系统负载最高
|
@ExcelProperty(value = "15分钟系统负载值最高", index = 9)
|
@ColumnWidth(18)
|
private Double fiteenLoad;
|
|
public String getDatetime() {
|
return datetime;
|
}
|
|
public void setDatetime(String datetime) {
|
this.datetime = datetime;
|
}
|
|
public Integer getWarnCount() {
|
return warnCount;
|
}
|
|
public void setWarnCount(Integer warnCount) {
|
this.warnCount = warnCount;
|
}
|
|
public Double getMemPer() {
|
return memPer;
|
}
|
|
public void setMemPer(Double memPer) {
|
this.memPer = memPer;
|
}
|
|
public Double getCpuPer() {
|
return cpuPer;
|
}
|
|
public void setCpuPer(Double cpuPer) {
|
this.cpuPer = cpuPer;
|
}
|
|
public Double getTxbyt() {
|
return txbyt;
|
}
|
|
public void setTxbyt(Double txbyt) {
|
this.txbyt = txbyt;
|
}
|
|
public Double getRxbyt() {
|
return rxbyt;
|
}
|
|
public void setRxbyt(Double rxbyt) {
|
this.rxbyt = rxbyt;
|
}
|
|
public Integer getNetConnections() {
|
return netConnections;
|
}
|
|
public void setNetConnections(Integer netConnections) {
|
this.netConnections = netConnections;
|
}
|
|
public Double getOneLoad() {
|
return oneLoad;
|
}
|
|
public void setOneLoad(Double oneLoad) {
|
this.oneLoad = oneLoad;
|
}
|
|
public Double getFiveLoad() {
|
return fiveLoad;
|
}
|
|
public void setFiveLoad(Double fiveLoad) {
|
this.fiveLoad = fiveLoad;
|
}
|
|
public Double getFiteenLoad() {
|
return fiteenLoad;
|
}
|
|
public void setFiteenLoad(Double fiteenLoad) {
|
this.fiteenLoad = fiteenLoad;
|
}
|
}
|