Files
jx-callback/business/partner/purchase/tiktok_store/store_test.go
richboo111 8b54cc9f23 1
2022-10-25 09:45:12 +08:00

20 lines
340 B
Go

package tiktok_store
import (
"fmt"
"testing"
)
//创建运费模板
func TestCreateFreight(t *testing.T) {
data, err := CreateFreightTemplate(668504)
fmt.Println(data)
fmt.Println(err)
}
//营业时间格式
func TestSplicingTimeToDoudian(t *testing.T) {
data := SplicingTimeToDoudian(1130, 1200, 1430, 1500)
fmt.Println(data)
}