finance
黄伟 2 years ago
parent 2b6ac8e200
commit 26a17f1b5f

@ -177,12 +177,12 @@ type ReplyByIdItem struct {
SourceName string `json:"sourceName"` SourceName string `json:"sourceName"`
} }
// FindByIds @Title 根据商品Ids获取商品信息 // FindBySkuIds @Title 根据商品Ids获取商品信息
func (g *goods) FindByIds(ctx context.Context, goodsIds []uint) (reply []AdoptItem, err error) { func (g *goods) FindBySkuIds(ctx context.Context, goodsIds []uint) (reply []AdoptItem, 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, "FindByIds", goodsIds, &reply) err = xClient.Call(ctx, "FindBySkuIds", goodsIds, &reply)
return return
} }

Loading…
Cancel
Save