net
2025-02-14 06d3d15a5a08637041cc601101c063b11b07a346
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
package com.zhitan.history.domain.vo;
 
 
import com.zhitan.common.annotation.Excel;
 
/**
 * 历史监测数据返回 Excel
 *
 * @Author: Zhujw
 * @Date: 2023/3/7
 */
public class HistoricalDataExcel {
 
    /**
     * 点位名称
     */
    @Excel(name = "点位名称")
    private String indexName;
 
    /**
     * 值
     */
    @Excel(name = "值")
    private String value;
 
    /**
     * 使用量
     */
    @Excel(name = "使用量")
    private String usedValue;
 
    /**
     * 时间
     */
    @Excel(name = "时间")
    private String dataTime;
 
 
    public String getIndexName() {
        return indexName;
    }
 
    public void setIndexName(String indexName) {
        this.indexName = indexName;
    }
 
    public String getDataTime() {
        return dataTime;
    }
 
    public void setDataTime(String dataTime) {
        this.dataTime = dataTime;
    }
 
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
    public String getUsedValue() {
        return usedValue;
    }
 
    public void setUsedValue(String usedValue) {
        this.usedValue = usedValue;
    }
}