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:DbTableExcelChartDto.java * @author: http://www.wgstart.com * @date: 2021年8月12日 * @Description: 导出数据表统计趋势图excel * @Copyright: 2019-2021 wgcloud. All rights reserved. */ public class DbTableExcelChartDto implements Serializable { /** * */ private static final long serialVersionUID = 1L; //时间戳 @ExcelProperty(value = "时间", index = 0) @ColumnWidth(20) private String datetime; //数据量 @ExcelProperty(value = "数据量", index = 1) @ColumnWidth(18) private Long tableCount; public String getDatetime() { return datetime; } public void setDatetime(String datetime) { this.datetime = datetime; } public Long getTableCount() { return tableCount; } public void setTableCount(Long tableCount) { this.tableCount = tableCount; } }