1f12de0563bc7b81c77cd6b51cee2f6cef35477d.svn-base 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import org.apache.commons.lang.StringEscapeUtils;
  4. import java.io.Serializable;
  5. public class Data implements Serializable {
  6. private String fromUser;
  7. private String fromGroup;
  8. private String toUser;
  9. private Long msgId;
  10. private Long newMsgId;
  11. private long timestamp;
  12. private String content;
  13. private Boolean self;
  14. private String wId;
  15. public Data() {
  16. }
  17. public String getFromUser() {
  18. return fromUser;
  19. }
  20. public void setFromUser(String fromUser) {
  21. this.fromUser = fromUser;
  22. }
  23. public String getFromGroup() {
  24. return fromGroup;
  25. }
  26. public void setFromGroup(String fromGroup) {
  27. this.fromGroup = fromGroup;
  28. }
  29. public String getToUser() {
  30. return toUser;
  31. }
  32. public void setToUser(String toUser) {
  33. this.toUser = toUser;
  34. }
  35. public Long getMsgId() {
  36. return msgId;
  37. }
  38. public void setMsgId(Long msgId) {
  39. this.msgId = msgId;
  40. }
  41. public Long getNewMsgId() {
  42. return newMsgId;
  43. }
  44. public void setNewMsgId(Long newMsgId) {
  45. this.newMsgId = newMsgId;
  46. }
  47. public long getTimestamp() {
  48. return timestamp;
  49. }
  50. public void setTimestamp(long timestamp) {
  51. this.timestamp = timestamp;
  52. }
  53. public String getContent() {
  54. return content;
  55. }
  56. public void setContent(String content) {
  57. this.content = content;
  58. }
  59. public Boolean getSelf() {
  60. return self;
  61. }
  62. public void setSelf(Boolean self) {
  63. this.self = self;
  64. }
  65. public String getwId() {
  66. return wId;
  67. }
  68. public void setwId(String wId) {
  69. this.wId = wId;
  70. }
  71. }