From c3542b10ea66a1c3fad44fe8e0efd357d7d3857e Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期三, 19 十一月 2025 19:32:41 +0800
Subject: [PATCH] 2025年11月19日19:32:39
---
app/src/main/java/com/hdl/photovoltaic/ui/bean/MessageNoticeBean.java | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 45 insertions(+), 0 deletions(-)
diff --git a/app/src/main/java/com/hdl/photovoltaic/ui/bean/MessageNoticeBean.java b/app/src/main/java/com/hdl/photovoltaic/ui/bean/MessageNoticeBean.java
new file mode 100644
index 0000000..7a1060b
--- /dev/null
+++ b/app/src/main/java/com/hdl/photovoltaic/ui/bean/MessageNoticeBean.java
@@ -0,0 +1,45 @@
+package com.hdl.photovoltaic.ui.bean;
+
+public class MessageNoticeBean {
+
+ private boolean aiPush = false;
+ private boolean eventPush = false;
+ private boolean faultPush = false;
+
+ private boolean warnPush = false;
+
+ public boolean isWarnPush() {
+ return warnPush;
+ }
+
+ public void setWarnPush(boolean warnPush) {
+ this.warnPush = warnPush;
+ }
+
+ public boolean isFaultPush() {
+ return faultPush;
+ }
+
+ public void setFaultPush(boolean faultPush) {
+ this.faultPush = faultPush;
+ }
+
+ public boolean isEventPush() {
+ return eventPush;
+ }
+
+ public void setEventPush(boolean eventPush) {
+ this.eventPush = eventPush;
+ }
+
+ public boolean isAiPush() {
+ return aiPush;
+ }
+
+ public void setAiPush(boolean aiPush) {
+ this.aiPush = aiPush;
+ }
+
+
+
+}
--
Gitblit v1.8.0