From 41d97948c06f7ad30226864e49b1764f5b438ee3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Tue, 28 Mar 2023 18:42:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=95=B0=E6=8D=AE=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tree/consts.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tree/consts.go b/tree/consts.go index 1e03547..5d66254 100644 --- a/tree/consts.go +++ b/tree/consts.go @@ -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" +)