京东商城创建商品修改

This commit is contained in:
苏尹岚
2020-05-14 16:31:44 +08:00
parent c961da63c3
commit aff4b9fb20
2 changed files with 13 additions and 9 deletions

View File

@@ -567,3 +567,7 @@ func URLQueryEscape(s string) (str string) {
str, _ = url.QueryUnescape(s)
return str
}
func Int64ToFloat64(i int64) (f float64) {
return Str2Float64(Int64ToStr(i))
}