package com.hdl.photovoltaic.ui.bean;
|
|
import java.io.Serializable;
|
|
public class MessageBean implements Serializable {
|
|
|
private String content;//内容
|
private String homeName;//住宅名称
|
private String time;//时间
|
private int grade;//等级
|
private boolean isRead;//是否已经读取
|
|
public String getContent() {
|
return content == null ? "" : content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getHomeName() {
|
return homeName == null ? "" : homeName;
|
}
|
|
public void setHomeName(String homeName) {
|
this.homeName = homeName;
|
}
|
|
public String getTime() {
|
return time == null ? "" : time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
public int getGrade() {
|
return grade;
|
}
|
|
public void setGrade(int grade) {
|
this.grade = grade;
|
}
|
|
|
public boolean isRead() {
|
return isRead;
|
}
|
|
public void setRead(boolean read) {
|
isRead = read;
|
}
|
|
|
}
|