fwq
2022-10-19 809ebb82bd6ef92f7b38b583ef0f37b05896a7cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.hx.phiappt.dto;
 
public class Keyword {
    private String value;
 
    private String color;
 
    public String getColor() {
        return color;
    }
 
    public void setColor(String color) {
        this.color = color;
    }
 
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
}