14 lines
301 B
Go
14 lines
301 B
Go
package ledger
|
|
|
|
// AgencyPointShareStats 聚合送礼时已固化归属的 Agency POINT 分成。
|
|
type AgencyPointShareStats struct {
|
|
ShareIncome int64
|
|
GiftedHostCount int64
|
|
}
|
|
|
|
type AgencyPointShareStatsQuery struct {
|
|
AgencyOwnerUserID int64
|
|
StartAtMS int64
|
|
EndAtMS int64
|
|
}
|