修改数据结构,并添加数据类型枚举

master
王鑫 2024-08-29 14:41:37 +08:00
parent 8a3a6d3162
commit f0f4fbfa85
1 changed files with 2 additions and 2 deletions

View File

@ -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;
} }