ccl冷凝胶后端
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

2 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. │ ├─job 定时任务模块
  14. │ ├─oss 文件服务模块
  15. │ └─sys 权限模块
  16. ├─gaotaoApplication 项目启动类
  17. ├──resources
  18. │ ├─mapper SQL对应的XML文件
  19. │ └─static 静态资源
  20. ```
  21. <br>