From 6b52a1ef71fc698f98ff6f1edeed66b6138f75c8 Mon Sep 17 00:00:00 2001 From: shenzhouyu Date: Tue, 10 Jun 2025 13:59:15 +0800 Subject: [PATCH] first commit --- README.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..b9bb7fb --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ + + +**项目结构** +``` +gaotao-fast +├─db 项目SQL语句 +│ +├─common 公共模块 +│ ├─aspect 系统日志 +│ ├─exception 异常处理 +│ ├─validator 后台校验 +│ └─xss XSS过滤 +│ +├─config 配置信息 +│ +├─modules 功能模块 +│ ├─app API接口模块(APP调用) +│ ├─job 定时任务模块 +│ ├─oss 文件服务模块 +│ └─sys 权限模块 +│ +├─gaotaoApplication 项目启动类 +│ +├──resources +│ ├─mapper SQL对应的XML文件 +│ └─static 静态资源 + +``` +
+ +