34 lines
478 B
Plaintext
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;
|
|
}
|
|
|
|
}
|