NIMSDK-AOS  9.19.0
BroadcastMessage.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.msg.model;
2 
3 import java.io.Serializable;
4 
5 /**
6  * 全员广播通知
7  */
8 
9 public class BroadcastMessage implements Serializable{
10 
11  /**
12  * 广播id
13  */
14  private long id;
15 
16  /**
17  * 广播发送者账号
18  */
19  private String fromAccount;
20 
21  /**
22  * 广播消息时间戳
23  */
24  private long time;
25 
26  /**
27  * 广播消息内容
28  */
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 }