package com.hua.goddess.vo; public class ChatMessageVO { private String date; private boolean isComMeg; private String text; private String code; private String url; public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } public boolean isComMeg() { return isComMeg; } public void setComMeg(boolean isComMeg) { this.isComMeg = isComMeg; } public String getText() { return text; } public void setText(String text) { this.text = text; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } }