package com.jysoft.weChat.vo; public class ContentVo { // 消息内容 private String value; // 消息字体颜色 private String color; public String getValue() { return value; } public void setValue(String value) { this.value = value; } public String getColor() { return color; } public void setColor(String color) { this.color = color; } public ContentVo(String value, String color) { super(); this.value = value; this.color = color; } }