diff --git a/supplier/afsAudit.go b/supplier/afsAudit.go index 300e201..24dcaa5 100644 --- a/supplier/afsAudit.go +++ b/supplier/afsAudit.go @@ -82,3 +82,18 @@ func (a *afsAudit) Reject(ctx context.Context, args ArgsAfsAuditReject) error { reply := 0 return xClient.Call(ctx, "Reject", args, &reply) } + +type ArgsSetAfsAuditPrice struct { + Price decimal.Decimal + Switch uint +} + +// SetAfsAuditPrice @Title 设置需要审核金额 +func (a *afsAudit) SetAfsAuditPrice(ctx context.Context, args ArgsSetAfsAuditPrice) error { + xClient, err := client.GetClient(a) + if err != nil { + return err + } + reply := 0 + return xClient.Call(ctx, "SetAfsAuditPrice", args, &reply) +}