package com.moral.yunfushao.model; /** * 蓝牙接收的数据 * Created by haijiang on 2017/7/29. */ public class RecData { private double value; private String time; 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; } }