|
|
|
@ -178,11 +178,11 @@ type ReplyByIdItem struct {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
err = xClient.Call(ctx, "FindBySkuIds", goodsIds, &reply)
|
|
|
|
|
err = xClient.Call(ctx, "FindBySkuIds", skuIds, &reply)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|