finance
黄伟 2 years ago
parent a8632a1dbb
commit 08facd05eb

@ -178,11 +178,11 @@ type ReplyByIdItem struct {
} }
// FindBySkuIds @Title 根据商品Ids获取商品信息 // FindBySkuIds @Title 根据商品Ids获取商品信息
func (g *goods) FindBySkuIds(ctx context.Context, goodsIds []uint) (reply []ReplyByIdItem, err error) { func (g *goods) FindBySkuIds(ctx context.Context, skuIds []uint) (reply []ReplyByIdItem, err error) {
xClient, err := client.GetClient(g) xClient, err := client.GetClient(g)
if err != nil { if err != nil {
return nil, err return nil, err
} }
err = xClient.Call(ctx, "FindBySkuIds", goodsIds, &reply) err = xClient.Call(ctx, "FindBySkuIds", skuIds, &reply)
return return
} }

Loading…
Cancel
Save