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;
|
}
|
|
|
|
}
|