order_bonus.go 368 字节
package service

type OrderBonusService interface {
	UpdateBounsByGoodNumber(orderId int64, adminId int64, goodWithNumber int) error
	UpdateBounsByPartnerBonusPercent(orderId int64, adminId int64, partnerPercent float64) error
	UpdateOrderRemark(orderId int64, adminId int64, remark string) error
	PayOrderGoodBonus(orderId int64, goodId int64, adminId int64) error
}