You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.0 KiB
53 lines
1.0 KiB
package com.hai.model;
|
|
|
|
/**
|
|
* @author sum1dream
|
|
*/
|
|
public class TextMessage {
|
|
|
|
private String toUserName;
|
|
private String fromUserName;
|
|
private String msgType;
|
|
private String content;
|
|
private Long createTime;
|
|
|
|
public String getToUserName() {
|
|
return toUserName;
|
|
}
|
|
|
|
public void setToUserName(String toUserName) {
|
|
this.toUserName = toUserName;
|
|
}
|
|
|
|
public String getFromUserName() {
|
|
return fromUserName;
|
|
}
|
|
|
|
public void setFromUserName(String fromUserName) {
|
|
this.fromUserName = fromUserName;
|
|
}
|
|
|
|
public String getMsgType() {
|
|
return msgType;
|
|
}
|
|
|
|
public void setMsgType(String msgType) {
|
|
this.msgType = msgType;
|
|
}
|
|
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
public Long getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(Long createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
}
|
|
|