基础框架-后端
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.

33 lines
648 B

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