liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
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
package com.dingzhuo.energy.data.monitoring.trend.realtime.domain;
 
import com.dingzhuo.energy.data.model.domain.IndexType;
import com.dingzhuo.energy.framework.aspectj.lang.annotation.Excel;
import com.dingzhuo.energy.framework.web.domain.BaseEntity;
 
public class RealTimeTrend  extends BaseEntity {
 
    private String nodeId;
 
    /**
     * 系统指标类型
     */
    private IndexType indexType;
 
    private int minute;
 
    private int count;
 
    public String getNodeId() {
        return nodeId;
    }
 
    public void setNodeId(String nodeId) {
        this.nodeId = nodeId;
    }
 
    public IndexType getIndexType() {
        return indexType;
    }
 
    public void setIndexType(IndexType indexType) {
        this.indexType = indexType;
    }
 
    public int getMinute() {
        return minute;
    }
 
    public void setMinute(int minute) {
        this.minute = minute;
    }
 
    public int getCount() {
        return count;
    }
 
    public void setCount(int count) {
        this.count = count;
    }
}