From 018bee9b3fdc5a92913b500a5dd0e609dd20ca36 Mon Sep 17 00:00:00 2001 From: kanade Date: Wed, 24 Aug 2022 15:57:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8F=82=E6=95=B0=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- supply/channel/order.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/supply/channel/order.go b/supply/channel/order.go index 98e8364..d681ead 100644 --- a/supply/channel/order.go +++ b/supply/channel/order.go @@ -95,7 +95,7 @@ func (o *order) Submit(ctx context.Context, channelId string, args ArgsOrderSubm } // LadingBill @Title 提单 -func (o *order) LadingBill(ctx context.Context, channelId string, orderSn string) (err error) { +func (o *order) LadingBill(ctx context.Context, channelId string, orderSn uint64) (err error) { reply := 0 xClient, err := client.GetClient(o) if err != nil { @@ -105,7 +105,7 @@ func (o *order) LadingBill(ctx context.Context, channelId string, orderSn string } // Close @Title 关闭 -func (o *order) Close(ctx context.Context, channelId string, orderSn string) (err error) { +func (o *order) Close(ctx context.Context, channelId string, orderSn uint64) (err error) { reply := 0 xClient, err := client.GetClient(o) if err != nil {