diff --git a/customer/sku/sale.go b/customer/sku/sale.go index b26f887..f110a00 100644 --- a/customer/sku/sale.go +++ b/customer/sku/sale.go @@ -24,13 +24,18 @@ func (s *sale) Add(ctx context.Context, skuIds []uint) (reply []SaleHandleItem, return } +type ArgsSaleLists struct { + SkuId uint + Page bean.Page +} + // Lists @Title ๅ•†ๅ“ๅˆ—่กจ -func (s *sale) Lists(ctx context.Context, page bean.Page) (reply ReplySaleSkuItemLists, err error) { +func (s *sale) Lists(ctx context.Context, args ArgsSaleLists) (reply ReplySaleSkuItemLists, err error) { xClient, err := client.GetClient(s) if err != nil { return ReplySaleSkuItemLists{}, err } - err = xClient.Call(ctx, "Lists", page, &reply) + err = xClient.Call(ctx, "Lists", args, &reply) return }