PageRenderTime 23ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/src/main/java/com/linbox/im/message/SendMsgResponse.java

https://gitlab.com/Mr.Tomato/linbox_server
Java | 39 lines | 24 code | 11 blank | 4 comment | 0 complexity | 5014f9c5fbfd1d94da76e554be4ffbe4 MD5 | raw file
  1. package com.linbox.im.message;
  2. import com.alibaba.fastjson.annotation.JSONField;
  3. /**
  4. * Created by lrsec on 6/29/15.
  5. */
  6. public class SendMsgResponse extends ByteCreator {
  7. @JSONField(name = "r_id")
  8. public long rId;
  9. @JSONField(name = "msg_r_id")
  10. public long msgRId;
  11. @JSONField(name = "user_id")
  12. public String userId;
  13. @JSONField(name = "remote_id")
  14. public String remoteId;
  15. @JSONField(name = "group_id")
  16. public String groupId;
  17. @JSONField(name = "msg_id")
  18. public long msgId;
  19. @JSONField(name = "send_time")
  20. public long sendTime;
  21. // 消息类型
  22. @JSONField(name = "type")
  23. public int type;
  24. @JSONField(name = "status")
  25. public int status;
  26. @JSONField(name = "err_msg")
  27. public String errMsg;
  28. }