partner_statics.go 256 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 package domain type PartnerStatics struct { PartnerInfo // 订单金额 Amount float64 `json:"amount"` // 分红 Bonus float64 `json:"bonus"` // 分红支出 BonusExpense float64 `json:"bonus_expense"` // 订单数 Total float64 `json:"total"` }