Skip to content

Payback Period

定义

Payback Period 是回本周期,表示企业收回获客成本所需要的时间。

在电商中,它通常用于衡量一个新客户从首次购买和后续复购中产生的毛利或净收入,需要多久才能覆盖 CAC。

一句话理解:Payback Period 回答“买来这个客户,多久能把钱赚回来”。

为什么重要

LTV 高不代表增长一定安全。如果 LTV 要两年后才实现,但现金流只能承受三个月回本,业务仍然有风险。

Payback Period 能帮助团队判断:

  • 获客投入的现金流压力
  • 渠道是否适合扩量
  • 补贴策略是否过重
  • 复购和毛利是否足够快
  • 增长是否可持续

对企业经营来说,回本速度和最终 LTV 一样重要。

Growth 漏斗位置

Payback Period 位于 Customer Value 层,连接 CAC、LTV、Retention 和 Revenue。

典型关系:

text
CAC -> Gross Profit from Customer -> Payback Period -> Scalable Growth

计算公式

基础公式:

text
Payback Period = CAC / Average Periodic Gross Profit per Customer

如果按月:

text
Payback Period in Months = CAC / Monthly Gross Profit per Customer

Cohort 计算方式:

text
当累计毛利 >= CAC 时,对应的时间点就是回本周期

统计口径

必须明确成本和回收价值。

成本口径:

  • Paid CAC
  • Blended CAC
  • CAC including promotion
  • CAC excluding promotion

回收口径:

  • Revenue
  • Net Revenue
  • Gross Profit
  • Contribution Profit

推荐用 Gross Profit 或 Contribution Profit 计算回本周期,因为收入不等于利润。

时间窗口需要按 cohort 追踪,例如首购后第 30、60、90、180 天累计贡献。

示例

某渠道 CAC 为 120 元。新客户平均每月贡献毛利 40 元。

text
Payback Period = 120 / 40 = 3 个月

如果另一个渠道 CAC 为 80 元,但每月毛利只有 10 元:

text
Payback Period = 80 / 10 = 8 个月

第二个渠道 CAC 更低,但回本更慢,未必更适合扩量。

SQL 思路

计算 cohort 累计收入是否覆盖 CAC:

sql
with cohort_customers as (
  select user_id, acquisition_channel, min(order_paid_at) as first_purchase_at
  from orders
  where order_status in ('paid', 'shipped', 'completed')
  group by 1, 2
),
customer_profit as (
  select
    c.acquisition_channel,
    c.user_id,
    date_part('day', o.order_paid_at - c.first_purchase_at) as days_since_first_purchase,
    sum(o.gross_profit) as gross_profit
  from cohort_customers c
  join orders o on c.user_id = o.user_id
  where o.order_status in ('paid', 'shipped', 'completed')
  group by 1, 2, 3
)
select
  acquisition_channel,
  days_since_first_purchase,
  sum(gross_profit) as cumulative_gross_profit
from customer_profit
group by 1, 2
order by 1, 2;

实际使用时,需要再和渠道 CAC 对比,找出累计毛利首次超过 CAC 的时间点。

Dashboard 展示

建议展示方式:

  • Payback Period by Channel
  • CAC vs Cumulative Gross Profit Curve
  • LTV/CAC and Payback Period Matrix
  • Payback by Cohort
  • Payback by Product Category
  • Cash Recovery Timeline

可视化建议:用累计毛利曲线和 CAC 水平线展示回本点,曲线穿过 CAC 的时间就是 Payback Period。

如何优化

优化方向:

  • 降低 CAC
  • 提高首单毛利
  • 提升首单到二单转化
  • 缩短复购周期
  • 提高 AOV
  • 减少退款和补贴
  • 优化高毛利品类推荐
  • 对低回本渠道降预算

Payback 优化的核心是让客户更快贡献可留存的利润,而不是只提高表面收入。

常见误区

  • 只看 LTV/CAC,不看回本周期。
  • 用 Revenue 回本,不看毛利。
  • CAC 不包含优惠和补贴。
  • 用平均值掩盖渠道差异。
  • 预测回本过度乐观。
  • 忽略现金流约束。

相关指标

面试题

  1. Payback Period 和 LTV/CAC 有什么区别?
  2. 为什么高 LTV 但长回本周期也可能有风险?
  3. 回本周期应该用 Revenue 还是 Gross Profit 计算?
  4. 如何按渠道计算 Payback Period?
  5. 如果 CAC 上升但回本周期缩短,可能说明什么?

企业案例

一家会员制电商发现渠道 A 的 CAC 是 50 元,渠道 B 的 CAC 是 120 元。表面上渠道 A 更好。但 cohort 分析显示:

  • 渠道 A 用户 6 个月才回本
  • 渠道 B 用户 2 个月回本
  • 渠道 B 复购率和毛利更高

团队最终提高渠道 B 预算,因为它虽然获客更贵,但现金回收更快、长期质量更好。

PPT Notes

  • Slide title: Payback Period: 增长现金流安全线
  • Key message: 回本周期决定获客扩量的现金压力
  • Visual: Cumulative Gross Profit curve crossing CAC line
  • Speaker note: 强调用毛利或贡献利润计算,而不是只用 Revenue
电商 Growth 指标手册 · 服务于电商增长团队的实战教材
基于 VitePress 构建 · GitHub