From 70394b344e4c9aceb9e979eb4192bdbb28186deb Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期一, 23 三月 2026 16:07:24 +0800
Subject: [PATCH] 2026年03月23日16:07:23

---
 app/src/main/java/com/hdl/photovoltaic/ui/bean/FwVersionBean.java |   81 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 81 insertions(+), 0 deletions(-)

diff --git a/app/src/main/java/com/hdl/photovoltaic/ui/bean/FwVersionBean.java b/app/src/main/java/com/hdl/photovoltaic/ui/bean/FwVersionBean.java
new file mode 100644
index 0000000..a7ee9c3
--- /dev/null
+++ b/app/src/main/java/com/hdl/photovoltaic/ui/bean/FwVersionBean.java
@@ -0,0 +1,81 @@
+package com.hdl.photovoltaic.ui.bean;
+
+import java.io.Serializable;
+
+/**
+ * BMS璁惧鍥轰欢鐗堟湰
+ */
+public class FwVersionBean implements Serializable {
+    private String fwModule;
+    private String version;
+    private boolean upgrade;//鏄惁闇�瑕佸崌绾�
+    private boolean popUpgrade;//璇ヨ澶囨槸鍚︽湁寮圭獥鍗囩骇
+    private String versionNew;//鏂扮増鏈彿
+    private String versionNewDesc;//鏂扮増鏈弿杩�
+    private long versionNewId;//鏂扮増鏈彿id
+    private String versionNewFileUrl;//鏂扮増鏈笅杞藉湴鍧�(鍔犲瘑杩囩殑)
+
+    public String getFwModule() {
+        return fwModule == null ? "" : fwModule;
+    }
+
+    public void setFwModule(String module) {
+        this.fwModule = module;
+    }
+
+    public String getVersion() {
+        return version == null ? "" : version;
+    }
+
+    public void setVersion(String version) {
+        this.version = version;
+    }
+
+    public boolean isUpgrade() {
+        return upgrade;
+    }
+
+    public void setUpgrade(boolean upgrade) {
+        this.upgrade = upgrade;
+    }
+
+    public boolean isPopUpgrade() {
+        return popUpgrade;
+    }
+
+    public void setPopUpgrade(boolean popUpgrade) {
+        this.popUpgrade = popUpgrade;
+    }
+
+    public String getVersionNew() {
+        return versionNew == null ? "" : versionNew;
+    }
+
+    public void setVersionNew(String versionNew) {
+        this.versionNew = versionNew;
+    }
+
+    public String getVersionNewDesc() {
+        return versionNewDesc == null ? "" : versionNewDesc;
+    }
+
+    public void setVersionNewDesc(String versionNewDesc) {
+        this.versionNewDesc = versionNewDesc;
+    }
+
+    public long getVersionNewId() {
+        return versionNewId == 0 ? 0 : versionNewId;
+    }
+
+    public void setVersionNewId(long versionNewId) {
+        this.versionNewId = versionNewId;
+    }
+
+    public String getVersionNewFileUrl() {
+        return versionNewFileUrl == null ? "" : versionNewFileUrl;
+    }
+
+    public void setVersionNewFileUrl(String versionNewFileUrl) {
+        this.versionNewFileUrl = versionNewFileUrl;
+    }
+}

--
Gitblit v1.8.0