add int64 dataType

This commit is contained in:
MaxToby
2021-01-03 16:10:42 +08:00
parent ec36bd4c17
commit 65c9afac77
7 changed files with 70 additions and 244 deletions

View File

@ -21,6 +21,8 @@ var (
swaggerMapTypes = map[string]reflect.Kind{
"string": reflect.String,
"int": reflect.Int,
"int32": reflect.Int,
"int64": reflect.Int64,
"[]string": reflect.Slice,
"bool": reflect.Bool,
"struct": reflect.Struct,