运费处理接口

finance
杨赟 2 years ago
parent d64fe66f2e
commit 39fd78e95a

@ -51,12 +51,11 @@ type OrderFreightFee struct {
} }
// FreightFee @Title 运费处理 // FreightFee @Title 运费处理
func (o *order) FreightFee(ctx context.Context, args ArgsOrderFreightFee) { func (o *order) FreightFee(ctx context.Context, args ArgsOrderFreightFee) (err error) {
xClient, err := client.GetClient(o) xClient, err := client.GetClient(o)
if err != nil { if err != nil {
return return
} }
reply := 0 reply := 0
err = xClient.Call(ctx, "FreightFee", args, &reply) return xClient.Call(ctx, "FreightFee", args, &reply)
return
} }

Loading…
Cancel
Save