修改数据结构,并添加数据类型枚举
parent
8a3a6d3162
commit
f0f4fbfa85
|
@ -24,7 +24,7 @@ public class DataStructure {
|
|||
/**
|
||||
* 字段类型
|
||||
*/
|
||||
private String type;
|
||||
private DataType type;
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
|
@ -32,5 +32,5 @@ public class DataStructure {
|
|||
/**
|
||||
* 值
|
||||
*/
|
||||
private DataType value;
|
||||
private Object value;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue