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
package com.hdl.sdk.hdl_core.HDLDeviceManger.EventBusEvent;
 
import com.hdl.sdk.hdl_core.HDLAppliances.HDLGeothermal.GeothermalBackInfo;
 
/**
 * Created by JLChen on 2019/7/10
 * 地热模块
 */
public class GeothermalFeedBackEvent {
    GeothermalBackInfo mGeothermalBackInfo;
//    boolean isSuccess;
 
    int mStatusID;
 
    public GeothermalFeedBackEvent( GeothermalBackInfo geothermalBackInfo, int mStatusID){
        this.mGeothermalBackInfo = geothermalBackInfo;
        this.mStatusID = mStatusID;
    }
 
    public GeothermalBackInfo getGeothermalBackInfo() {
        return mGeothermalBackInfo;
    }
 
    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;
//    }
}