代码整理

This commit is contained in:
2024-08-21 17:14:00 +08:00
parent e9bc1f37cc
commit 3a378cd7d2
8 changed files with 162 additions and 107 deletions

8
utils/func.go Normal file
View File

@@ -0,0 +1,8 @@
package utils
import "strconv"
// Int64toa Int64转换为String。
func Int64toa(v int64) string {
return strconv.FormatInt(v, 10)
}