增加slice any 类型枚举
This commit is contained in:
		@ -13,6 +13,7 @@ const (
 | 
				
			|||||||
	DataTypeFloat               = "float"             // float类型 -> float64
 | 
						DataTypeFloat               = "float"             // float类型 -> float64
 | 
				
			||||||
	DataTypeBool                = "bool"              // bool类型
 | 
						DataTypeBool                = "bool"              // bool类型
 | 
				
			||||||
	DataTypeString              = "string"            // 字符串类型
 | 
						DataTypeString              = "string"            // 字符串类型
 | 
				
			||||||
 | 
						DataTypeSliceAny            = "[]any"             // any数组 -> []any
 | 
				
			||||||
	DataTypeSliceInt            = "[]int"             // int数组 -> []int64
 | 
						DataTypeSliceInt            = "[]int"             // int数组 -> []int64
 | 
				
			||||||
	DataTypeSliceIntWithChar    = "[]int_split"       // int数组 -> []int64, 按照指定字符切割
 | 
						DataTypeSliceIntWithChar    = "[]int_split"       // int数组 -> []int64, 按照指定字符切割
 | 
				
			||||||
	DataTypeSliceUint           = "[]uint"            // uint数组 -> []uint64
 | 
						DataTypeSliceUint           = "[]uint"            // uint数组 -> []uint64
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user