|
|
@@ -5,6 +5,7 @@ import java.util.Date;
|
|
|
public class AppMessageBo {
|
|
|
private String id;
|
|
|
private String title;
|
|
|
+ private String body;
|
|
|
private Date createTime;
|
|
|
private Boolean isRead ;
|
|
|
public String getId() {
|
|
|
@@ -31,5 +32,11 @@ public class AppMessageBo {
|
|
|
public void setIsRead(Boolean isRead) {
|
|
|
this.isRead = isRead;
|
|
|
}
|
|
|
+ public String getBody() {
|
|
|
+ return body;
|
|
|
+ }
|
|
|
+ public void setBody(String body) {
|
|
|
+ this.body = body;
|
|
|
+ }
|
|
|
|
|
|
}
|