package com.xcong.excoin.netty.bean; import java.io.Serializable; public class ChatRequest implements Serializable { private static final long serialVersionUID = 3079080008111369136L; private String to; private String from; private Integer msgType; private String content; public String getTo() { return to; } public void setTo(String to) { this.to = to; } public String getFrom() { return from; } public void setFrom(String from) { this.from = from; } public Integer getMsgType() { return msgType; } public void setMsgType(Integer msgType) { this.msgType = msgType; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } }