新增查询京东商城用户关联门店接口

This commit is contained in:
苏尹岚
2019-11-28 08:51:14 +08:00
parent caac72c232
commit a784eaa8b2
2 changed files with 34 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
package jdapi
import (
"fmt"
"testing"
"git.rosy.net.cn/baseapi"
@@ -189,3 +190,11 @@ func TestSaveQualify(t *testing.T) {
t.Fatal(err)
}
}
func TestGetJdUserBindStoreIDs(t *testing.T) {
vv, err := api.GetJdUserBindStoreIDs(339890)
if err != nil {
t.Fatal(err)
}
fmt.Println(vv)
}