首次提交:初始化后端、数据库结构与文档代码

This commit is contained in:
Peter
2026-03-23 16:10:29 +08:00
commit 86f384c2d3
95 changed files with 10090 additions and 0 deletions

20
.gitignore vendored Normal file
View File

@@ -0,0 +1,20 @@
# 1. 忽略根目录所有文件和隐藏文件夹
/*
.*
# 2. 豁免(不忽略)指定的根目录文件和文件夹
!/.gitignore
!/README.md
!/server/
!/sql/
# 3. 针对 docs 目录:先豁免目录本身,忽略里面所有内容,然后再单一豁免目标子目录
!/docs/
/docs/*
!/docs/餐饮零售数据中台/
# 4. 单独针对 server 项目,忽略常见的编译和缓存临时文件
/server/target/
/server/.mvn/
/server/*.iml
/server/.idea/