This commit is contained in:
邹宗楠
2026-03-25 11:46:28 +08:00
parent c740630ce6
commit 47d67bb9d8
5 changed files with 44 additions and 12 deletions

View File

@@ -2,6 +2,7 @@ package weixinapi
import (
"fmt"
"git.rosy.net.cn/baseapi/utils"
"testing"
"time"
)
@@ -87,5 +88,9 @@ func TestSNSDeliveryGoodsOrder(t *testing.T) {
}
func TestName(t *testing.T) {
fmt.Println(411 / 50)
vendorId := 113
fromVendorID := utils.Str2Int(string(utils.Int2Str(vendorId)[0]))
to := utils.Str2Int(string(utils.Int2Str(vendorId)[1:]))
fmt.Println(fromVendorID)
fmt.Println(to)
}