From a399dc449dc962c088c2cacbc4c32d503ced816f Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期三, 04 十二月 2024 18:58:41 +0800
Subject: [PATCH] 2024年12月04日18:58:39

---
 app/src/main/java/com/hdl/photovoltaic/other/HdlDeviceLogic.java |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/app/src/main/java/com/hdl/photovoltaic/other/HdlDeviceLogic.java b/app/src/main/java/com/hdl/photovoltaic/other/HdlDeviceLogic.java
index 93e4fba..f5eb2c4 100644
--- a/app/src/main/java/com/hdl/photovoltaic/other/HdlDeviceLogic.java
+++ b/app/src/main/java/com/hdl/photovoltaic/other/HdlDeviceLogic.java
@@ -8,6 +8,7 @@
 import com.google.gson.JsonObject;
 import com.google.gson.reflect.TypeToken;
 import com.hdl.linkpm.sdk.core.exception.HDLException;
+import com.hdl.photovoltaic.bean.InverterBean;
 import com.hdl.photovoltaic.bean.LocalResponse;
 import com.hdl.photovoltaic.bean.PageNumberObject;
 import com.hdl.photovoltaic.config.AppConfigManage;
@@ -910,7 +911,7 @@
      * @param mac          缃戝叧mac
      * @param linkCallBack 鍥炶皟
      */
-    public void getGatewayInfo(String mac, LinkCallBack<GatewayBean> linkCallBack) {
+    public void getGatewayInfo(String mac, LinkCallBack<InverterBean> linkCallBack) {
         String requestUrl = TopicApi.GET_GATEWAY_INFO;
         JsonObject json = new JsonObject();
         json.addProperty("device_mac", mac);
@@ -926,11 +927,11 @@
                 }
 
                 Gson gson = new Gson();
-                Type typeOfT = new TypeToken<BaseLocalResponse<GatewayBean>>() {
+                Type typeOfT = new TypeToken<BaseLocalResponse<InverterBean>>() {
                 }.getType();
-                BaseLocalResponse<GatewayBean> baseLocalResponse = gson.fromJson(json, typeOfT);
+                BaseLocalResponse<InverterBean> baseLocalResponse = gson.fromJson(json, typeOfT);
                 if (baseLocalResponse == null || baseLocalResponse.getObjects() == null) {
-                    linkCallBack.onSuccess(new GatewayBean());
+                    linkCallBack.onSuccess(new InverterBean());
                 } else {
                     linkCallBack.onSuccess(baseLocalResponse.getObjects());
                 }

--
Gitblit v1.8.0