bb58fb2a29
按"一表一文件"建库表文档(协作规范第 11 条):字段(类型/约束/默认)+ 索引与约束 + 关系 + 说明,从 model 的 Mapped 定义扒准。 - README 索引:13 张表总览 + 通用约定(主键/外键/金额分/北京时间日期串/JSONB variant) - 覆盖 user / coin_account / coin_transaction / cash_transaction / withdraw_order / signin_record / user_task / savings_record / ad_reward_record / ad_ecpm_record / feedback / comparison_record / comparison_milestone_claim - savings_record 文档强调"成交省钱"≠"比价行为",与 comparison_record 互不喂数据 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1.5 KiB
1.5 KiB
ad_ecpm_record — 广告展示 eCPM 上报(收益对账)
模型
app/models/ad_ecpm.py| 关联接口 ad-ecpm-report | ← 表索引
每条 = 客户端一次广告展示(onAdShow)后读到的 eCPM。与发奖记录 ad_reward_record 是两条独立数据流(发奖走 S2S 有 trans_id 无 ecpm;eCPM 走客户端有 ecpm 无 trans_id),无公共键,只用于按用户/按天聚合收益对账,不做逐条精确关联。穿山甲后台报表才是结算权威。
字段
| 列 | 类型 | 约束 / 默认 | 说明 |
|---|---|---|---|
id |
Integer | PK, autoincrement | |
user_id |
Integer | FK→user.id, index, NOT NULL | 归属用户 |
ad_type |
String(32) | NOT NULL | 广告类型:reward_video(激励视频)/ draw(Draw 信息流)等 |
adn |
String(32) | nullable | 实际投放 ADN(getSdkName,如 pangle/gdt) |
slot_id |
String(64) | nullable | 实际展示代码位(底层 mediation rit) |
ecpm_raw |
String(32) | NOT NULL | 客户端上报的 eCPM 原始串(单位待确认,原样存) |
report_date |
String(10) | index, NOT NULL | 北京时间日期串 YYYY-MM-DD,按它做按天聚合 |
created_at |
DateTime(tz) | server_default now(), index | 时间 |
索引与约束
- PK:
id;index:user_id、report_date、created_at
关系
user_id→user.id(多对一)
说明
- ⚠️
ecpm_raw单位(分/元)截至 2026-05-31 未最终确认;确认后再加一列解析好的数值,在此之前对账按"待定单位"处理。