This commit is contained in:
邹宗楠
2023-05-24 09:59:47 +08:00
parent dcc5c91f58
commit a03520cc8b
3 changed files with 18 additions and 3 deletions

View File

@@ -1,7 +1,19 @@
package delivery
import "testing"
import (
"fmt"
"git.rosy.net.cn/baseapi/utils"
"git.rosy.net.cn/jx-callback/business/jxutils"
"testing"
)
func TestRider(t *testing.T) {
GetOrderRiderInfoToPlatform("144228632526740576", 0)
}
func TestCcc(t *testing.T) {
aa := utils.Float64ToStr(jxutils.IntCoordinate2Standard(103989607))
bb := utils.Float64ToStr(jxutils.IntCoordinate2Standard(30560797))
fmt.Println(aa)
fmt.Println(bb)
}