From 3d7518b2e103f581e1f9443696e100480c8128f7 Mon Sep 17 00:00:00 2001 From: sian Date: Thu, 8 Jun 2023 17:13:31 +0800 Subject: [PATCH] bug fix --- supply/data/order.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/supply/data/order.go b/supply/data/order.go index 2d56d76..67a6cea 100644 --- a/supply/data/order.go +++ b/supply/data/order.go @@ -51,12 +51,12 @@ type OrderItem struct { ReceiverAddress string `json:"receiverAddress"` // 收件人地址 } -// Lists @Title 品牌列表 -func (o *order) Lists(ctx context.Context, args ArgsPayOrderLists) (result ReplyPayOrderLists, err error) { +// PayOrderList @Title 支付订单统计 +func (o *order) PayOrderList(ctx context.Context, args ArgsPayOrderLists) (result ReplyPayOrderLists, err error) { xClient, err := client.GetClient(o) if err != nil { return } - err = xClient.Call(ctx, "Lists", args, &result) + err = xClient.Call(ctx, "PayOrderList", args, &result) return }