stdproject/projectframe.md
2025-05-30 09:58:52 +08:00

28 lines
1.1 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

StdProject/
├── backend/ # Spring Boot 后端
│ ├── src/main/java/
│ │ └── com/stdproject/ # 包名com.stdproject
│ │ ├── StdProjectApplication.java
│ │ ├── config/ # 配置类
│ │ ├── controller/ # 控制器
│ │ ├── service/ # 服务层
│ │ ├── mapper/ # MyBatis映射器
│ │ ├── entity/ # 实体类
│ │ ├── common/ # 通用类
│ │ └── utils/ # 工具类
│ ├── src/main/resources/
│ │ ├── application.yml
│ │ ├── logback-spring.xml
│ │ └── mapper/
│ └── pom.xml
├── frontend/ # Vue3 前端
│ ├── src/
│ │ ├── components/
│ │ ├── views/
│ │ ├── router/
│ │ ├── store/
│ │ ├── utils/
│ │ └── api/
│ ├── package.json
│ └── vite.config.js
└── docker-compose.yml # Docker部署配置