This commit is contained in:
邹宗楠
2023-06-05 17:25:40 +08:00
parent 3293103285
commit d81bad8f1c
4 changed files with 46 additions and 7 deletions

View File

@@ -95,7 +95,9 @@ type IPurchasePlatformOrderHandler interface {
}
type IAddWaybillTip interface {
// GetWaybillTip 获取添加小费
GetWaybillTip(ctx *jxcontext.Context, vendorOrgCode, vendorStoreID, vendorOrderID, vendorWaybillID, vendorWaybillID2 string) (tipFee int64, err error)
// UpdateWaybillTip 添加小费
UpdateWaybillTip(ctx *jxcontext.Context, vendorOrgCode, vendorStoreID, vendorOrderID, vendorWaybillID, vendorWaybillID2, cityCode string, tipFee int64) (err error)
}