2026-07-21 18:08:55 +08:00

16 lines
434 B
Go

package ledger
// HostRevenueStats 是主播中心按日期展示的周期钻石收益、POINT 已兑换数量和去重送礼人数。
type HostRevenueStats struct {
DiamondEarnings int64
DiamondExchanged int64
GiftSenders int64
}
// HostRevenueStatsQuery 使用左闭右开 UTC 毫秒区间;调用方必须限制区间长度。
type HostRevenueStatsQuery struct {
HostUserID int64
StartAtMS int64
EndAtMS int64
}