付延余
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
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:HeathExcelChartDto.java
 * @author: http://www.wgstart.com
 * @date: 2022年9月14日
 * @Description: 服务接口趋势图excel
 * @Copyright: 2019-2022 wgcloud. All rights reserved.
 */
public class HeathExcelChartDto implements Serializable {
 
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
 
    //时间戳
    @ExcelProperty(value = "上报时间", index = 0)
    @ColumnWidth(18)
    private String datetime;
 
    //响应时间
    @ExcelProperty(value = "响应时间(ms)", index = 1)
    @ColumnWidth(18)
    private Integer resTimes;
 
 
    public String getDatetime() {
        return datetime;
    }
 
    public void setDatetime(String datetime) {
        this.datetime = datetime;
    }
 
    public Integer getResTimes() {
        return resTimes;
    }
 
    public void setResTimes(Integer resTimes) {
        this.resTimes = resTimes;
    }
}