docs: 支付模块开发文档 + git 域名更新

- 新增 backend/design/支付模块架构概览.md
- 新增 backend/design/支付模块数据库设计.md (21张表 DDL)
- 新增 backend/design/支付模块接口设计.md
- git.dev.vifo.cc → git.vifo.cc 全局替换
This commit is contained in:
2026-06-09 01:54:20 +08:00
parent 1324a52049
commit 7b2f3d77ca
10 changed files with 1308 additions and 34 deletions
+5 -5
View File
@@ -213,7 +213,7 @@ git push origin main
```bash
# 查看 Actions 运行状态
# 访问:https://git.dev.vifo.cc/rui/{仓库名}/actions
# 访问:https://git.vifo.cc/rui/{仓库名}/actions
```
### 模块间通信示例
@@ -294,22 +294,22 @@ const cashierApi = {
git remote -v
# 确认是 Gitea 地址
gitea ssh://git@git.dev.vifo.cc:222/rui/xxx.git
gitea ssh://git@git.vifo.cc:222/rui/xxx.git
# 如果失败,检查 SSH 密钥
ssh -p 222 git@git.dev.vifo.cc
ssh -p 222 git@git.vifo.cc
```
### CI 构建失败
```bash
# 查看构建日志
# 访问:https://git.dev.vifo.cc/rui/{仓库}/actions
# 访问:https://git.vifo.cc/rui/{仓库}/actions
```
### 钉钉没收到通知
```bash
# 检查 Webhook 配置
# 访问:https://git.dev.vifo.cc/rui/{仓库}/settings/hooks
# 访问:https://git.vifo.cc/rui/{仓库}/settings/hooks
```
---