沈斌
2018-05-16 6c88cd89b3f3d6d140f6eb0cec20e2f57a7ff563
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
package com.moral.yunfushao.model;
 
/**
 * 蓝牙接收的数据
 * Created by haijiang on 2017/7/29.
 */
 
public class RecData {
    private double value;
    private String time;
    private int type;//0实时数据 1小时数据
    private int is_warn;//1报警 0 不报警
 
    public double getValue() {
        return value;
    }
 
    public void setValue(double value) {
        this.value = value;
    }
 
    public String getTime() {
        return time;
    }
 
    public void setTime(String time) {
        this.time = time;
    }
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
 
    public int getIs_warn() {
        return is_warn;
    }
 
    public void setIs_warn(int is_warn) {
        this.is_warn = is_warn;
    }
}