From 3bd6e9023e011336da840e11a9d48bb31c7a0261 Mon Sep 17 00:00:00 2001 From: 陈奇 <1650699704@qq.com> Date: Wed, 07 Nov 2018 09:31:59 +0800 Subject: [PATCH] [*]将电磁版本的唤醒心跳改成两秒,唤醒之后回到30一次心跳 [*]整体版本页面显示的绝对安全换成了安全 [*]自定义语音修改和优化,添加了无声的选择 --- app/src/main/java/com/moral/yunfushao/model/RecData.java | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/app/src/main/java/com/moral/yunfushao/model/RecData.java b/app/src/main/java/com/moral/yunfushao/model/RecData.java index 53066bd..97460f1 100644 --- a/app/src/main/java/com/moral/yunfushao/model/RecData.java +++ b/app/src/main/java/com/moral/yunfushao/model/RecData.java @@ -8,6 +8,8 @@ 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; @@ -24,4 +26,20 @@ 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; + } } -- Gitblit v1.8.0