This commit is contained in:
苏尹岚
2021-03-01 18:14:36 +08:00
parent 34af8ec1ed
commit 1c49fcb1d7
4 changed files with 37 additions and 2 deletions

View File

@@ -276,3 +276,17 @@ func TestQueren(t *testing.T) {
// }
// t.Log(utils.Format4Output(result, false))
}
func TestBatchAddSkuByUPC(t *testing.T) {
_, err := api.BatchAddSkuByUPC([]*CreateByUpcParam2{
&CreateByUpcParam2{
OutSkuId: "6048265",
Upc: "6911672042530",
JdPrice: "29800",
ShopCategoryID: 5485102,
},
})
if err != nil {
t.Fatal(err)
}
}