乐天mes后端
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
555 B

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