From db21de901bb1bbc6ec66b59e7b0766d0d2c5c6cc Mon Sep 17 00:00:00 2001
From: JLChen <551775569@qq.com>
Date: 星期二, 16 七月 2019 13:54:44 +0800
Subject: [PATCH] 20190716 1.提供声必可SDK,部分数据处理调整; 2.演示DemoAPP,地热和新风页面调整;

---
 hdl_core/src/main/java/com/hdl/sdk/hdl_core/HDLDeviceManger/EventBusEvent/GeothermalFeedBackEvent.java |   26 ++++++++++++++++++++------
 1 files changed, 20 insertions(+), 6 deletions(-)

diff --git a/hdl_core/src/main/java/com/hdl/sdk/hdl_core/HDLDeviceManger/EventBusEvent/GeothermalFeedBackEvent.java b/hdl_core/src/main/java/com/hdl/sdk/hdl_core/HDLDeviceManger/EventBusEvent/GeothermalFeedBackEvent.java
index d70de83..a372f6c 100644
--- a/hdl_core/src/main/java/com/hdl/sdk/hdl_core/HDLDeviceManger/EventBusEvent/GeothermalFeedBackEvent.java
+++ b/hdl_core/src/main/java/com/hdl/sdk/hdl_core/HDLDeviceManger/EventBusEvent/GeothermalFeedBackEvent.java
@@ -7,21 +7,35 @@
  * 鍦扮儹妯″潡
  */
 public class GeothermalFeedBackEvent {
-
     GeothermalBackInfo mGeothermalBackInfo;
+//    boolean isSuccess;
 
-    boolean isSuccess;
+    int mStatusID;
 
-    public GeothermalFeedBackEvent( GeothermalBackInfo geothermalBackInfo, boolean isSuccess){
+    public GeothermalFeedBackEvent( GeothermalBackInfo geothermalBackInfo, int mStatusID){
         this.mGeothermalBackInfo = geothermalBackInfo;
-        this.isSuccess = isSuccess;
+        this.mStatusID = mStatusID;
     }
 
     public GeothermalBackInfo getGeothermalBackInfo() {
         return mGeothermalBackInfo;
     }
 
-    public boolean isSuccess() {
-        return isSuccess;
+    public int getStatusID() {
+        return mStatusID;
     }
+
+
+//    public GeothermalFeedBackEvent( GeothermalBackInfo geothermalBackInfo, boolean isSuccess){
+//        this.mGeothermalBackInfo = geothermalBackInfo;
+//        this.isSuccess = isSuccess;
+//    }
+//
+//    public GeothermalBackInfo getGeothermalBackInfo() {
+//        return mGeothermalBackInfo;
+//    }
+//
+//    public boolean isSuccess() {
+//        return isSuccess;
+//    }
 }

--
Gitblit v1.8.0