ChatBody.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /**
  2. *
  3. */
  4. package org.jim.common.packets;
  5. import com.alibaba.fastjson.JSONObject;
  6. /**
  7. * 版本: [1.0]
  8. * 功能说明:
  9. * 作者: WChao 创建时间: 2017年7月26日 上午11:34:44
  10. */
  11. public class ChatBody extends Message {
  12. private static final long serialVersionUID = 5731474214655476286L;
  13. /**
  14. * 发送用户id;
  15. */
  16. private String from;
  17. /**
  18. * 目标用户id;
  19. */
  20. private String to;
  21. /**
  22. * 消息类型;(如:0:text、1:image、2:voice、3:vedio、4:music、5:news)
  23. */
  24. private Integer msgType;
  25. /**
  26. * 聊天类型;(如公聊、私聊)
  27. */
  28. private Integer chatType;
  29. /**
  30. * 消息内容;
  31. */
  32. private String content;
  33. /**
  34. * 消息发到哪个群组;
  35. */
  36. private String group_id;
  37. private ChatBody(){}
  38. private ChatBody(String id , String from , String to , Integer msgType , Integer chatType , String content , String group_id , Integer cmd , Long createTime , JSONObject extras){
  39. this.id = id;
  40. this.from = from ;
  41. this.to = to;
  42. this.msgType = msgType;
  43. this.chatType = chatType;
  44. this.content = content;
  45. this.group_id = group_id;
  46. this.cmd = cmd;
  47. this.createTime = createTime;
  48. this.extras = extras;
  49. }
  50. public static ChatBody.Builder newBuilder(){
  51. return new ChatBody.Builder();
  52. }
  53. public String getFrom() {
  54. return from;
  55. }
  56. public ChatBody setFrom(String from) {
  57. this.from = from;
  58. return this;
  59. }
  60. public String getTo() {
  61. return to;
  62. }
  63. public ChatBody setTo(String to) {
  64. this.to = to;
  65. return this;
  66. }
  67. public Integer getMsgType() {
  68. return msgType;
  69. }
  70. public ChatBody setMsgType(Integer msgType) {
  71. this.msgType = msgType;
  72. return this;
  73. }
  74. public String getContent() {
  75. return content;
  76. }
  77. public ChatBody setContent(String content) {
  78. this.content = content;
  79. return this;
  80. }
  81. public String getGroup_id() {
  82. return group_id;
  83. }
  84. public ChatBody setGroup_id(String group_id) {
  85. this.group_id = group_id;
  86. return this;
  87. }
  88. public Integer getChatType() {
  89. return chatType;
  90. }
  91. public ChatBody setChatType(Integer chatType) {
  92. this.chatType = chatType;
  93. return this;
  94. }
  95. public static class Builder extends Message.Builder<ChatBody,ChatBody.Builder>{
  96. /**
  97. * 来自user_id;
  98. */
  99. private String from;
  100. /**
  101. * 目标user_id;
  102. */
  103. private String to;
  104. /**
  105. * 消息类型;(如:0:text、1:image、2:voice、3:vedio、4:music、5:news)
  106. */
  107. private Integer msgType;
  108. /**
  109. * 聊天类型;(如公聊、私聊)
  110. */
  111. private Integer chatType;
  112. /**
  113. * 消息内容;
  114. */
  115. private String content;
  116. /**
  117. * 消息发到哪个群组;
  118. */
  119. private String group_id;
  120. public Builder(){};
  121. public Builder setFrom(String from) {
  122. this.from = from;
  123. return this;
  124. }
  125. public Builder setTo(String to) {
  126. this.to = to;
  127. return this;
  128. }
  129. public Builder setMsgType(Integer msgType) {
  130. this.msgType = msgType;
  131. return this;
  132. }
  133. public Builder setChatType(Integer chatType) {
  134. this.chatType = chatType;
  135. return this;
  136. }
  137. public Builder setContent(String content) {
  138. this.content = content;
  139. return this;
  140. }
  141. public Builder setGroup_id(String group_id) {
  142. this.group_id = group_id;
  143. return this;
  144. }
  145. @Override
  146. protected Builder getThis() {
  147. return this;
  148. }
  149. @Override
  150. public ChatBody build(){
  151. return new ChatBody(this.id , this.from , this.to , this.msgType , this.chatType , this.content , this.group_id ,this.cmd , this.createTime , this.extras);
  152. }
  153. }
  154. }