9 lines
136 B
Go
9 lines
136 B
Go
package utils
|
|
|
|
import "strconv"
|
|
|
|
// Int64toa Int64转换为String。
|
|
func Int64toa(v int64) string {
|
|
return strconv.FormatInt(v, 10)
|
|
}
|