From a70ad9ed0f9ebff29f0e69064e9399f411300bd3 Mon Sep 17 00:00:00 2001 From: sian Date: Fri, 6 Jan 2023 10:52:03 +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 --- supplier/batch/order/order.go | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/supplier/batch/order/order.go b/supplier/batch/order/order.go index d4e6b8b..cd511f4 100644 --- a/supplier/batch/order/order.go +++ b/supplier/batch/order/order.go @@ -29,14 +29,3 @@ func (o *order) FreightFee(ctx context.Context, args ArgsOrderFreightFee) (err e err = xClient.Call(ctx, "FreightFee", args, &reply) return } - -// Close @Title 订单关闭 -func (o *order) Close(ctx context.Context, orderSn string) (err error) { - xClient, err := client.GetClient(o) - if err != nil { - return - } - reply := 0 - err = xClient.Call(ctx, "Close", orderSn, &reply) - return -}