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 +}