CounterDroneBackend/docs/requirements/index.md

56 lines
1.0 KiB
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/requirements — 需求与变更管理
> **可选**:如果团队已使用 Jira/TAPD/飞书等工单系统,可直接删除此目录,避免双写。
本目录用于管理项目需求及其变更记录。
## 目录结构
```
requirements/
├── index.md # 本文件
└── changes/ # 需求变更记录(每条变更一个文件)
```
## 需求变更记录
当需求发生变更时,请在 `changes/` 下创建一条记录。
### 文件命名规范
```
YYYY-MM-DD-<简短描述>.md
```
### 变更记录模板
```markdown
# [变更标题]
- **日期**YYYY-MM-DD
- **提出人**[姓名]
- **关联需求**[原始需求编号或链接]
- **优先级**:高 / 中 / 低
## 变更描述
> 说明变更内容、变更原因。
## 影响范围
- [ ] 接口变更
- [ ] 数据库变更
- [ ] UI 变更
- [ ] 文档变更
## 审批
- [ ] 产品确认
- [ ] 技术评估
- [ ] 测试评估
```
---
> 每条变更记录对应一个 `.md` 文件,便于版本控制和追溯。