hz-zhhq-app-service/greenH5modul/.svn/pristine/94/94186ed2a9831afff1250f8b6c1...

34 lines
478 B
Plaintext

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;
}
}