增加数据类型定义
This commit is contained in:
parent
a3b7072672
commit
41d97948c0
@ -23,3 +23,16 @@ const (
|
||||
// KeywordEscapeSymbol 转义符号
|
||||
KeywordEscapeSymbol = `\`
|
||||
)
|
||||
|
||||
const (
|
||||
// ValueTypeString 字符串类型
|
||||
ValueTypeString = "string"
|
||||
// ValueTypeInteger int类型
|
||||
ValueTypeInteger = "int64"
|
||||
// ValueTypeFloat float类型
|
||||
ValueTypeFloat = "float64"
|
||||
// ValueTypeMap map数据
|
||||
ValueTypeMap = "map"
|
||||
// ValueTypeArray 数组
|
||||
ValueTypeArray = "array"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user