mac
2023-12-06 d830fef6a2bc2ab061e6ac2b423c4a49dda3cf21
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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;
    }
 
 
}