From b4b30bf0d6cc1fc5dcaf385467fffbc7bb1ced65 Mon Sep 17 00:00:00 2001 From: sian Date: Wed, 19 Oct 2022 10:50:26 +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 --- supply/afterService.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/supply/afterService.go b/supply/afterService.go index 55fe83e..e21b5e2 100644 --- a/supply/afterService.go +++ b/supply/afterService.go @@ -140,11 +140,11 @@ type AfterServiceSku struct { } // Info @Title 零售售后详情 -func (a *afterService) Info(ctx context.Context, afsId uint) (reply ReplyAfterServiceInfo, err error) { +func (a *afterService) Info(ctx context.Context, afsSn string) (reply ReplyAfterServiceInfo, err error) { xClient, err := client.GetClient(a) if err != nil { return ReplyAfterServiceInfo{}, err } - err = xClient.Call(ctx, "Info", afsId, &reply) + err = xClient.Call(ctx, "Info", afsSn, &reply) return }