33 lines
1.7 KiB
Go
33 lines
1.7 KiB
Go
package dbstruct
|
|
|
|
type DailyStatementZoneInfo struct {
|
|
Id *int64 `json:"id" bson:"_id"` // 每日报表id
|
|
Zid *int64 `json:"zid" bson:"zid"` // 空间id
|
|
EntrantNum *int64 `json:"entrant_num" bson:"entrant_num"` // 上小时新增空间进入人数(不含退款)
|
|
TotalAmount *int64 `json:"total_amount" bson:"total_amount"` // 上小时总入账
|
|
AdmissionAmount *int64 `json:"admission_amount" bson:"admission_amount"` // 成员入账
|
|
ZoneMomentAmount *int64 `json:"zone_moment_amount" bson:"zone_moment_amount"` // 帖子入账
|
|
SuperfanshipAmount *int64 `json:"superfanship_amount" bson:"superfanship_amount"` // 超粉入账
|
|
RefundAmount *int64 `json:"refund_amount" bson:"refund_amount"` // 退款金额
|
|
RefunderAmount *int64 `json:"refunder_amount" bson:"refunder_amount"` // 退款人数
|
|
StartTime *int64 `json:"start_time" bson:"start_time"` // 起始时间
|
|
EndTime *int64 `json:"end_time" bson:"end_time"` // 结束时间
|
|
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
|
|
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
|
|
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
|
|
}
|
|
|
|
func (p *DailyStatementZoneInfo) GetTotalAmount() int64 {
|
|
if p != nil && p.TotalAmount != nil {
|
|
return *p.TotalAmount
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (p *DailyStatementZoneInfo) GetEntrantNum() int64 {
|
|
if p != nil && p.EntrantNum != nil {
|
|
return *p.EntrantNum
|
|
}
|
|
return 0
|
|
}
|