增加slice any 类型枚举

This commit is contained in:
白茶清欢 2024-06-08 19:57:00 +08:00
parent feddc6a70f
commit 4311f44fab

View File

@ -13,6 +13,7 @@ const (
DataTypeFloat = "float" // float类型 -> float64
DataTypeBool = "bool" // bool类型
DataTypeString = "string" // 字符串类型
DataTypeSliceAny = "[]any" // any数组 -> []any
DataTypeSliceInt = "[]int" // int数组 -> []int64
DataTypeSliceIntWithChar = "[]int_split" // int数组 -> []int64, 按照指定字符切割
DataTypeSliceUint = "[]uint" // uint数组 -> []uint64