admin
2021-05-13 4a8f1bec26519a25f073739534e653a4f7c9e11d
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.tejia.lijin.app.entity;
 
import com.google.gson.annotations.Expose;
 
import java.io.Serializable;
 
public class Label implements Serializable {
    @Expose
    private String color;
    @Expose
    private String content;
    @Expose
    private String borderColor;//边框颜色
 
    public String getBorderColor() {
        return borderColor;
    }
 
    public void setBorderColor(String borderColor) {
        this.borderColor = borderColor;
    }
 
 
    public Label(String color, String content) {
        this.color = color;
        this.content = content;
    }
 
    public Label() {
    }
 
 
    public String getColor() {
        return color;
    }
 
    public void setColor(String color) {
        this.color = color;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
}