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"` // 订单完成总量 LastHourNewUserCountFromAndroid *int64 `json:"last_hour_new_user_count_from_android" bson:"last_hour_new_user_count_from_android"` // 安卓注册总量 LastHourNewUserCountFromIos *int64 `json:"last_hour_new_user_count_from_ios" bson:"last_hour_new_user_count_from_ios"` // ios注册总量 LastHourNewUserCountFromH5 *int64 `json:"last_hour_new_user_count_from_h5" bson:"last_hour_new_user_count_from_h5"` // h5注册总量 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"` // 删除标记 }