java110
2021-12-22 c29e5eba528fd4e811c4e27bee99e5032c6fd54d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.java110.entity.wechat;
 
/**
 * @description: 消息内容字体颜色
 * @author: zcc
 * @create: 2020-06-16 09:46
 **/
public class Content {
    private String value;//消息内容
    private String color = "#173177"; //消息字体颜色
 
    public Content( String value) {
       this.value = value;
    }
 
    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;
    }
}