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