docs(pay): 定 CNY 价 ¥29.99/¥68.88/¥199.99

pro 月/季/年 人民币价拍板(哪吒/支付宝渠道),定价与待确认清单更新为已定。

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
wangjia
2026-07-09 23:01:32 +08:00
parent 266f4e83f3
commit 674ee504cb
+6 -6
View File
@@ -206,17 +206,17 @@ status TEXT -- created|pending|paid|failed|expired
created_at / paid_at DATETIME
UNIQUE(provider, provider_ref) -- 回调幂等的命门</pre>
<h3>4.3 SKU 目录 + 定价 <span class="tag warn">待你确认价格</span></h3>
<h3>4.3 SKU 目录 + 定价 <span class="tag ok">已定</span></h3>
<p>SKU → (plan, 天数, 各币种价格)。哪吒收人民币(支付宝)、crypto 收 USDT,故<b>按币种各定一价</b>(不做实时汇率换算,固定价是产品决策)。首版 SKU 目录作为控制面代码常量(后续可迁 DB)。</p>
<table>
<thead><tr><th>SKU</th><th>plan</th><th>天数</th><th>USDT(crypto)</th><th>CNY(哪吒/支付宝)</th></tr></thead>
<tbody>
<tr><td><code>pro-month</code></td><td>pro</td><td>30</td><td>$3.99</td><td>¥28(待定)</td></tr>
<tr><td><code>pro-quarter</code></td><td>pro</td><td>90</td><td>$9.99</td><td>¥68(待定)</td></tr>
<tr><td><code>pro-year</code></td><td>pro</td><td>365</td><td>$29.99</td><td>¥198(待定)</td></tr>
<tr><td><code>pro-month</code></td><td>pro</td><td>30</td><td>$3.99</td><td>¥29.99</td></tr>
<tr><td><code>pro-quarter</code></td><td>pro</td><td>90</td><td>$9.99</td><td>¥68.88</td></tr>
<tr><td><code>pro-year</code></td><td>pro</td><td>365</td><td>$29.99</td><td>¥199.99</td></tr>
</tbody>
</table>
<p class="small">USDT 价你已拍板;CNY 价是我锚定现有 <code>¥25/月</code> 的提案,<b>发布前请确认</b></p>
<p class="small">USDT 价与 CNY 价均已拍板。金额一律 <code>int64</code> 最小单位存(USDT 微单位 1e-6、CNY 分),哪吒 <code>money</code> 参数按元、2 位小数下发</p>
<h2>5. Provider 适配器接口</h2>
<p>每个支付平台实现同一个接口,控制面只依赖接口。三个动作是最小完备集。</p>
@@ -341,7 +341,7 @@ GET /v1/webhooks/pay/nazha (哪吒, RSA 验签, GET)</pre>
<thead><tr><th></th><th>状态</th></tr></thead>
<tbody>
<tr><td>SKU 三档 + USDT 价($3.99/$9.99/$29.99)</td><td><span class="tag ok">已定</span></td></tr>
<tr><td>CNY 价(¥28/¥68/¥198 提案)</td><td><span class="tag warn">待你确认</span></td></tr>
<tr><td>CNY 价(¥29.99/¥68.88/¥199.99)</td><td><span class="tag ok">已定</span></td></tr>
<tr><td>哪吒商户注册(pid + RSA 密钥对)</td><td><span class="tag warn">你去 Telegram 开户后给我</span></td></tr>
<tr><td>return_url 成功落地页(用户中心 or 官网一页)</td><td><span class="tag warn">待定</span></td></tr>
<tr><td>Order + PaymentAttempt 两层模型</td><td><span class="tag info">本设计采用</span></td></tr>