付延余
2022-12-16 f0f8ee8c4a945adbc742d9bab69382b28ad311fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
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;
    }
}