|
@@ -26,8 +26,8 @@ public class ControlParam implements Serializable {
|
|
|
|
|
|
private ValueType type;
|
|
|
|
|
|
- @TableField(typeHandler = JacksonTypeHandler.class)
|
|
|
- private List<String> values;
|
|
|
+ @TableField(value = "`values`", typeHandler = JacksonTypeHandler.class)
|
|
|
+ private List<ParamValue> values;
|
|
|
|
|
|
public Long getId() {
|
|
|
return id;
|
|
@@ -69,11 +69,11 @@ public class ControlParam implements Serializable {
|
|
|
this.type = type;
|
|
|
}
|
|
|
|
|
|
- public List<String> getValues() {
|
|
|
+ public List<ParamValue> getValues() {
|
|
|
return values;
|
|
|
}
|
|
|
|
|
|
- public void setValues(List<String> values) {
|
|
|
+ public void setValues(List<ParamValue> values) {
|
|
|
this.values = values;
|
|
|
}
|
|
|
}
|