16 lines
1.1 KiB
Go
16 lines
1.1 KiB
Go
package dbstruct
|
|
|
|
type DailyStatement struct {
|
|
Id *int64 `json:"id" bson:"_id"` // 每日报表id
|
|
H5CallCount *int64 `json:"h5_call_count" bson:"h5_call_count"` // H5接口调用总量
|
|
RegisteredUserCount *int64 `json:"registered_user_count" bson:"registered_user_count"` // 注册用户总量
|
|
OrderCreatedCount *int64 `json:"order_created_count" bson:"order_created_count"` // 订单创建总量
|
|
OrderFinishedCount *int64 `json:"order_finished_count" bson:"order_finished_count"` // 订单完成总量
|
|
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"` // 删除标记
|
|
|
|
}
|