From 59ac8cfc7c1d938faa65a528e75d943ad0dde647 Mon Sep 17 00:00:00 2001 From: sian Date: Fri, 21 Oct 2022 10:21:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- customer/sku/sale.go | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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 }