mitao
2024-08-06 356b6e4b0a11a6e44717dc9b92beaacc9c0c4b7a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.member.util;
 
public class TemplateData {
     private String value;
     private String color; 
     public TemplateData(String value,String color){ 
         this.value = value; this.color = 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;
    }
    
}