| | |
| | | * 地热模块 |
| | | */ |
| | | 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; |
| | | // } |
| | | } |