添加淘宝

This commit is contained in:
邹宗楠
2023-06-28 09:45:03 +08:00
parent 9327c466a6
commit c13ba506a0
15 changed files with 556 additions and 36 deletions

View File

@@ -282,6 +282,10 @@ func Float64ToStr(data float64) string {
return fmt.Sprint(data)
}
func Float32ToStr(data float32) string {
return fmt.Sprint(data)
}
// timestamp is in second
func Timestamp2Str(timestamp int64) string {
return Time2Str(Timestamp2Time(timestamp))