finance
黄伟 2 years ago
parent f27f2ad0e7
commit e872079c21

@ -90,3 +90,13 @@ func (s *sale) DelAll(ctx context.Context) error {
reply := 0
return xClient.Call(ctx, "DelAll", args, &reply)
}
// FindBySkuIds @Title 根据SkuId查询数据
func (s *sale) FindBySkuIds(ctx context.Context, skuIds []uint) (reply []SaleSkuItem, err error) {
xClient, err := client.GetClient(s)
if err != nil {
return nil, err
}
err = xClient.Call(ctx, "FindBySkuIds", skuIds, &reply)
return
}

Loading…
Cancel
Save