增加数据类型定义

This commit is contained in:
白茶清欢 2023-03-28 18:42:06 +08:00
parent a3b7072672
commit 41d97948c0

View File

@ -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"
)