order_bonus.go 317 字节
package service

type OrderBonusService interface {
	UpdateBounsByGoodNumber(orderId int64, adminId int64, goodWithNumber map[int64]int) error
	UpdateBounsByPartnerBonusPercent(orderId int64, adminId int64, goodWithPercent map[int]float64) error
	PayOrderGoodBonus(orderId int64, goodId int64, adminId int64) error
}