TemplateProject/docs/design/technical/index.md
2026-05-21 20:32:32 +08:00

52 lines
807 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# docs/design/technical — 技术方案
本目录存放各模块的详细技术设计方案。
## 文件命名
```
<模块名>-技术方案.md
```
## 技术方案模板
```markdown
# [模块名] 技术方案
- **版本**v[版本号]
- **作者**[姓名]
- **日期**YYYY-MM-DD
- **状态**:草稿 / 评审中 / 已定稿
## 1. 概述
> 本方案解决什么问题?适用范围是什么?
## 2. 设计目标
- 功能目标
- 非功能目标(性能、安全、可扩展性等)
## 3. 方案描述
### 3.1 整体流程
<!-- 推荐使用 Mermaid 绘制流程图 -->
### 3.2 接口设计
### 3.3 数据模型
### 3.4 关键逻辑
## 4. 风险与应对
| 风险 | 影响 | 应对措施 |
|------|------|----------|
| ... | ... | ... |
## 5. 参考
- [相关文档链接]
```