haijiang
2018-07-10 487102118041896810e4657a37eaab43a8998bc5
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
package com.moral.screen.model;
 
/**
 * Created by hjzhang on 2018/7/4.
 */
 
public class DeviceDataBean {
    private String sensor_key;
    private String unit;
    private float upper;
    private float lower;
    private String name;
    private String description;
    private int id;
    private String state;
    private float value;
 
    public String getSensor_key() {
        return sensor_key;
    }
 
    public void setSensor_key(String sensor_key) {
        this.sensor_key = sensor_key;
    }
 
    public String getUnit() {
        return unit;
    }
 
    public void setUnit(String unit) {
        this.unit = unit;
    }
 
    public float getUpper() {
        return upper;
    }
 
    public void setUpper(float upper) {
        this.upper = upper;
    }
 
    public float getLower() {
        return lower;
    }
 
    public void setLower(float lower) {
        this.lower = lower;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public float getValue() {
        return value;
    }
 
    public void setValue(float value) {
        this.value = value;
    }
}