xiaoyong931011
2021-08-12 3895d2c29f62f44d6e154e0055a648e34e0b3470
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.matrix.component.tools;
 
public class TemplateData {
      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;
        }
}