工业级运维app手机api
沈斌
2017-10-24 918315ff05823dc5b1bc68b395e812799b1ee2d3
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
package com.moral.monitor.entity;
 
/**
 * 此设备所有传感器报警相关信息
 * Created by a on 2017/4/10.
 */
public class AlarmSensor {
    private int id;
    private String mac;
    private String sensor;
    private String alarm;
    private String mac_key;
    private double first;
    private int first_notice;
    private double second;
    private int second_notice;
    private double third;
    private int third_notice;
    private String units;
    private int  digit;
    private Double inverse_first;
    private Double inverse_second;
    private Double inverse_third;
 
 
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getMac() {
        return mac;
    }
    public void setMac(String mac) {
        this.mac = mac;
    }
    public String getSensor() {
        return sensor;
    }
    public void setSensor(String sensor) {
        this.sensor = sensor;
    }
    public String getAlarm() {
        return alarm;
    }
    public void setAlarm(String alarm) {
        this.alarm = alarm;
    }
    public String getMac_key() {
        return mac_key;
    }
    public void setMac_key(String mac_key) {
        this.mac_key = mac_key;
    }
    public double getFirst() {
        return first;
    }
    public void setFirst(double first) {
        this.first = first;
    }
    public int getFirst_notice() {
        return first_notice;
    }
    public void setFirst_notice(int first_notice) {
        this.first_notice = first_notice;
    }
    public double getSecond() {
        return second;
    }
    public void setSecond(double second) {
        this.second = second;
    }
    public int getSecond_notice() {
        return second_notice;
    }
    public void setSecond_notice(int second_notice) {
        this.second_notice = second_notice;
    }
    public double getThird() {
        return third;
    }
    public void setThird(double third) {
        this.third = third;
    }
    public int getThird_notice() {
        return third_notice;
    }
    public void setThird_notice(int third_notice) {
        this.third_notice = third_notice;
    }
    public String getUnits() {
        return units;
    }
    public void setUnits(String units) {
        this.units = units;
    }
    public int getDigit() {
        return digit;
    }
    public void setDigit(int digit) {
        this.digit = digit;
    }
    public Double getInverse_first() {
        return inverse_first;
    }
    public void setInverse_first(Double inverse_first) {
        this.inverse_first = inverse_first;
    }
    public Double getInverse_second() {
        return inverse_second;
    }
    public void setInverse_second(Double inverse_second) {
        this.inverse_second = inverse_second;
    }
    public Double getInverse_third() {
        return inverse_third;
    }
    public void setInverse_third(Double inverse_third) {
        this.inverse_third = inverse_third;
    }
}