|
@@ -193,7 +193,7 @@ func Int64All(num interface{}) int64 {
|
|
} else if i3, ok3 := num.(float32); ok3 {
|
|
} else if i3, ok3 := num.(float32); ok3 {
|
|
return int64(i3)
|
|
return int64(i3)
|
|
} else if i4, ok4 := num.(string); ok4 {
|
|
} else if i4, ok4 := num.(string); ok4 {
|
|
- i64, _ := strconv.ParseInt(i4, 10, 0)
|
|
|
|
|
|
+ i64, _ := strconv.ParseInt(i4, 10, 64)
|
|
//in, _ := strconv.Atoi(i4)
|
|
//in, _ := strconv.Atoi(i4)
|
|
return i64
|
|
return i64
|
|
} else if i5, ok5 := num.(int16); ok5 {
|
|
} else if i5, ok5 := num.(int16); ok5 {
|