From 6bec440068b604c27beb8fb83560bd50575cca12 Mon Sep 17 00:00:00 2001 From: sian Date: Fri, 24 Feb 2023 14:17:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=94=AE=E5=90=8E=E5=AE=A1?= =?UTF-8?q?=E6=A0=B8=E8=AF=A6=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- supplier/afsAudit.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/supplier/afsAudit.go b/supplier/afsAudit.go index c5af126..a0e6f6a 100644 --- a/supplier/afsAudit.go +++ b/supplier/afsAudit.go @@ -117,3 +117,14 @@ func (a *afsAudit) GetAfsAuditConfig(ctx context.Context) (reply ReplyAfsAuditCo err = xClient.Call(ctx, "GetAfsAuditConfig", args, &reply) return } + +// Info @Title 审核详情 +func (a *afsAudit) Info(ctx context.Context, afsAuditId uint) (reply ReplyAfsDetail, err error) { + xClient, err := client.GetClient(a) + if err != nil { + return + } + args := 0 + err = xClient.Call(ctx, "Info", args, &reply) + return +}