15 lines
997 B
Go
15 lines
997 B
Go
package dbstruct
|
|
|
|
type StreamerScore struct {
|
|
Id int64 `json:"id" bson:"_id"`
|
|
Mid int64 `json:"mid" bson:"mid"`
|
|
ZoneMomentCountInThreeDays int64 `json:"zone_moment_count_in_three_days" bson:"zone_moment_count_in_three_days"`
|
|
ZoneMomentCountInAMonth int64 `json:"zone_moment_count_in_a_month" bson:"zone_moment_count_in_a_month"`
|
|
IncomeInAWeek int64 `json:"income_in_a_week" bson:"income_in_a_week"`
|
|
NewZoneMemberCountInThreeDays int64 `json:"new_zone_member_count_in_three_days" bson:"new_zone_member_count_in_three_days"`
|
|
NewZoneMemberCountInAMonth int64 `json:"new_zone_member_count_in_a_month" bson:"new_zone_member_count_in_a_month"`
|
|
MomentCountInThreeDays int64 `json:"moment_count_in_three_days" bson:"moment_count_in_three_days"`
|
|
RefundRate float64 `json:"refund_rate" bson:"refund_rate"`
|
|
Score float64 `json:"score" bson:"score"`
|
|
}
|