设置售后审核金额

finance
黄伟 2 years ago
parent 8a5cbd3098
commit a511f376e2

@ -82,3 +82,18 @@ func (a *afsAudit) Reject(ctx context.Context, args ArgsAfsAuditReject) error {
reply := 0 reply := 0
return xClient.Call(ctx, "Reject", args, &reply) 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)
}

Loading…
Cancel
Save