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:CustomExcelChartDto.java
|
* @author: http://www.wgstart.com
|
* @date: 2022年9月10日
|
* @Description: 导出自定义监控项值趋势图excel
|
* @Copyright: 2019-2022 wgcloud. All rights reserved.
|
*/
|
public class CustomExcelChartDto 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 String customValue;
|
|
public String getDatetime() {
|
return datetime;
|
}
|
|
public void setDatetime(String datetime) {
|
this.datetime = datetime;
|
}
|
|
public String getCustomValue() {
|
return customValue;
|
}
|
|
public void setCustomValue(String customValue) {
|
this.customValue = customValue;
|
}
|
}
|