leutu
2024-06-03 3ef35e6cd16bbfa206b26bb3271eac40ad020bcb
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
package com.fastbee.iot.model;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
/**
 * id和name
 * 
 * @author kerwincui
 * @date 2021-12-16
 */
public class DeviceStatistic
{
    /** 设备数量 **/
    private int deviceCount;
 
    /** 设备数量 **/
    private int deviceOnlineCount;
 
    /** 产品数量 **/
    private int productCount;
 
    /** 告警 **/
    private long alertCount;
 
    /** 属性上报 **/
    private long propertyCount;
 
    /** 功能上报 **/
    private long functionCount;
 
    /** 事件上报 **/
    private long eventCount;
 
    /** 监测数据上报 **/
    private long monitorCount;
 
    public int getDeviceOnlineCount() {
        return deviceOnlineCount;
    }
 
    public void setDeviceOnlineCount(int deviceOnlineCount) {
        this.deviceOnlineCount = deviceOnlineCount;
    }
 
    public long getMonitorCount() {
        return monitorCount;
    }
 
    public void setMonitorCount(long monitorCount) {
        this.monitorCount = monitorCount;
    }
 
    public int getDeviceCount() {
        return deviceCount;
    }
 
    public void setDeviceCount(int deviceCount) {
        this.deviceCount = deviceCount;
    }
 
    public int getProductCount() {
        return productCount;
    }
 
    public void setProductCount(int productCount) {
        this.productCount = productCount;
    }
 
    public long getAlertCount() {
        return alertCount;
    }
 
    public void setAlertCount(long alertCount) {
        this.alertCount = alertCount;
    }
 
    public long getPropertyCount() {
        return propertyCount;
    }
 
    public void setPropertyCount(long propertyCount) {
        this.propertyCount = propertyCount;
    }
 
    public long getFunctionCount() {
        return functionCount;
    }
 
    public void setFunctionCount(long functionCount) {
        this.functionCount = functionCount;
    }
 
    public long getEventCount() {
        return eventCount;
    }
 
    public void setEventCount(long eventCount) {
        this.eventCount = eventCount;
    }
}