You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
572 B

1 year ago
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
  1. **项目结构**
  2. ```
  3. gaotao-fast
  4. ├─db 项目SQL语句
  5. │
  6. ├─common 公共模块
  7. │ ├─aspect 系统日志
  8. │ ├─exception 异常处理
  9. │ ├─validator 后台校验
  10. │ └─xss XSS过滤
  11. │
  12. ├─config 配置信息
  13. │
  14. ├─modules 功能模块
  15. │ ├─app API接口模块(APP调用)
  16. │ ├─job 定时任务模块
  17. │ ├─oss 文件服务模块
  18. │ └─sys 权限模块
  19. │
  20. ├─gaotaoApplication 项目启动类
  21. │
  22. ├──resources
  23. │ ├─mapper SQL对应的XML文件
  24. │ └─static 静态资源
  25. ```
  26. <br>