Files
hr-position-system/docs/建議專案結構.md
DonaldFang 方士碩 a6af297623 backup: 完成 HR_position_ 表格前綴重命名與欄位對照表整理
變更內容:
- 所有資料表加上 HR_position_ 前綴
- 整理完整欄位顯示名稱與 ID 對照表
- 模組化 JS 檔案 (admin.js, ai.js, csv.js 等)
- 專案結構優化 (docs/, scripts/, tests/ 等)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-09 12:05:20 +08:00

1003 B

project_name/ ├── .env # 環境變數(不進版控) ├── .env.example # 環境變數範本 ├── .gitignore ├── README.md ├── requirements.txt ├── app.py # 主程式入口 ├── config.py # 設定檔 ├── preview.html # UI 預覽 │ ├── docs/ │ ├── SDD.md # 系統設計文件 │ ├── security_audit.md # 資安檢視報告 │ ├── user_command_log.md # 用戶指令記錄 │ ├── CHANGELOG.md # 版本變更紀錄 │ └── API_DOC.md # API 文件 │ ├── models/ # 資料庫模型 ├── routes/ # 路由模組 ├── services/ # 商業邏輯 ├── utils/ # 工具函式 ├── templates/ # HTML 模板 └── static/ # 靜態資源 ├── css/ ├── js/ └── images/