renzheng 9 жил өмнө
parent
commit
a638c888e9

+ 1 - 1
common/src/qfw/util/common.go

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