| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import org.apache.commons.lang.StringEscapeUtils;
- import java.io.Serializable;
- public class Data implements Serializable {
- private String fromUser;
- private String fromGroup;
- private String toUser;
- private Long msgId;
- private Long newMsgId;
- private long timestamp;
- private String content;
- private Boolean self;
- private String wId;
- public Data() {
- }
- public String getFromUser() {
- return fromUser;
- }
- public void setFromUser(String fromUser) {
- this.fromUser = fromUser;
- }
- public String getFromGroup() {
- return fromGroup;
- }
- public void setFromGroup(String fromGroup) {
- this.fromGroup = fromGroup;
- }
- public String getToUser() {
- return toUser;
- }
- public void setToUser(String toUser) {
- this.toUser = toUser;
- }
- public Long getMsgId() {
- return msgId;
- }
- public void setMsgId(Long msgId) {
- this.msgId = msgId;
- }
- public Long getNewMsgId() {
- return newMsgId;
- }
- public void setNewMsgId(Long newMsgId) {
- this.newMsgId = newMsgId;
- }
- public long getTimestamp() {
- return timestamp;
- }
- public void setTimestamp(long timestamp) {
- this.timestamp = timestamp;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public Boolean getSelf() {
- return self;
- }
- public void setSelf(Boolean self) {
- this.self = self;
- }
- public String getwId() {
- return wId;
- }
- public void setwId(String wId) {
- this.wId = wId;
- }
- }
|