+ UpdateWaybillTip

This commit is contained in:
gazebo
2019-07-30 14:43:28 +08:00
parent 15c6607eb2
commit e7bad7dc25
3 changed files with 31 additions and 6 deletions

View File

@@ -48,3 +48,8 @@ type IPurchasePlatformOrderHandler interface {
// // 确认收到退货
ConfirmReceivedReturnGoods(ctx *jxcontext.Context, order *model.AfsOrder) (err error)
}
type IUpdateWaybillTip interface {
// 添加快递小费这个不是递增的最后一次操作会覆盖之前的设置但只能增加不能减少且tipFee只能为100的倍数
UpdateWaybillTip(ctx *jxcontext.Context, order *model.GoodsOrder, tipFee int64) (err error)
}