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: 2021年8月22日
|
* @Description: 导出进程指标趋势图excel
|
* @Copyright: 2019-2021 wgcloud. All rights reserved.
|
*/
|
public class AppExcelChartDto implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
|
//时间戳
|
@ExcelProperty(value = "上报时间", index = 0)
|
@ColumnWidth(18)
|
private String datetime;
|
|
//cpu使用率
|
@ExcelProperty(value = "cpu使用率%", index = 1)
|
@ColumnWidth(18)
|
private Double cpuPer;
|
|
//内存使用率
|
@ExcelProperty(value = "内存使用率%", index = 2)
|
@ColumnWidth(18)
|
private Double memPer;
|
|
//使用线程数
|
@ExcelProperty(value = "线程数", index = 3)
|
@ColumnWidth(18)
|
private String threadsNum;
|
|
|
public String getDatetime() {
|
return datetime;
|
}
|
|
public void setDatetime(String datetime) {
|
this.datetime = datetime;
|
}
|
|
public Double getCpuPer() {
|
return cpuPer;
|
}
|
|
public void setCpuPer(Double cpuPer) {
|
this.cpuPer = cpuPer;
|
}
|
|
public Double getMemPer() {
|
return memPer;
|
}
|
|
public void setMemPer(Double memPer) {
|
this.memPer = memPer;
|
}
|
|
public String getThreadsNum() {
|
return threadsNum;
|
}
|
|
public void setThreadsNum(String threadsNum) {
|
this.threadsNum = threadsNum;
|
}
|
}
|