优化自动生成json #3

Merged
zhangdeman merged 24 commits from feature/tree into master 2023-05-05 16:10:39 +08:00
Showing only changes of commit 41d97948c0 - Show all commits

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