NIMSDK-AOS  10.5.0
BroadcastMessage.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.msg.model;
2 
3 import java.io.Serializable;
4 
9 public class BroadcastMessage implements Serializable{
10 
14  private long id;
15 
19  private String fromAccount;
20 
24  private long time;
25 
29  private String content;
30 
31  public long getId() {
32  return id;
33  }
34 
35  public void setId(long id) {
36  this.id = id;
37  }
38 
39  public String getFromAccount() {
40  return fromAccount;
41  }
42 
43  public void setFromAccount(String fromAccount) {
44  this.fromAccount = fromAccount;
45  }
46 
47  public long getTime() {
48  return time;
49  }
50 
51  public void setTime(long time) {
52  this.time = time;
53  }
54 
55  public String getContent() {
56  return content;
57  }
58 
59  public void setContent(String content) {
60  this.content = content;
61  }
62 }