slice slice

This commit is contained in:
白茶清欢 2024-05-01 22:25:03 +08:00
parent 6c507d6b9c
commit e31a270e50
1 changed files with 1 additions and 0 deletions

View File

@ -23,6 +23,7 @@ const (
DataTypeSliceBoolWithChar = "[]bool_split" // bool数组 -> []bool, 指定字符切割
DataTypeSliceString = "[]string" // 字符串数组 -> []string
DataTypeSliceStringWithChar = "[]string_split" // 字符串数组 -> []string, 指定字符切割
DataTypeSliceSlice = "[][]any" // 字符串数组 -> [][]any
DataTypeSliceMapAnyAny = "[]map[any]any" // 字符串数组 -> map[any]any, slice对象
DataTypeSliceMapStringAny = "[]map[string]any" // 字符串数组 -> map[string]any, slice对象
DataTypeMapStrInt = "map[string]int" // map -> map[string]int64