# studentManage **Repository Path**: ttwozhidao/studentManage ## Basic Information - **Project Name**: studentManage - **Description**: Django开发的学生就业管理系统 - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-07-10 - **Last Updated**: 2022-07-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # studentManage (学生就业管理系统) ### 项目部署 本项目是由 Django 开发的学生就业管理系统 ## 1. 项目开发环境 - IDE: PyCharm 2019.1.1 - Django版本: 2.2.7 - Python版本: python3.8 - 数据库 : sqlite3(测试专用) - 操作系统 : deepin15.11 ## 2. 项目的初始构建 ### 项目开发模式 - 前后端分离开发(前端:ZUI 后端:Django) ### 项目结构说明 ``` . ├── apps 三大用户功能APP │   ├── enterprise 企业系统相关业务逻辑处理 │   │   ├── admin.py │   │   ├── apps.py │   │   ├── migrations │   │   ├── models.py │   │   ├── tests.py │   │   └── views.py │   ├── student 学生系统相关业务逻辑处理 │   │   ├── admin.py │   │   ├── apps.py │   │   ├── migrations │   │   ├── models.py │   │   ├── tests.py │   │   └── views.py │   ├── system 系统相关其他业务逻辑处理 │   │   ├── admin.py │   │   ├── apps.py │   │   ├── migrations │   │   ├── models.py │   │   ├── urls.py │   │   └── views.py │   └── teacher 教师系统相关业务逻辑处理(已废弃) │   ├── admin.py │   ├── apps.py │   ├── migrations │   ├── models.py │   ├── tests.py │   └── views.py ├── db.sqlite3 测试专用数据库(可实现迁移Oracle,MySQL...) ├── manage.py 项目相关操作程序 ├── static 项目三大用户系统静态资源文件 │   ├── dist 第三方库等 │   ├── img 项目图片存储 │   ├── index.html │   ├── login.html │   ├── register.html │   ├── sysjs │   │   ├── cookies.js │   │   ├── EnterpriseIndex.js │   │   ├── isLogin.js │   │   ├── StudentIndex.js │   │   └── TeacherIndex.js │   ├── system 三大用户系统相关页面 │   │   ├── enterprise │   │   ├── student │   │   └── teacher │   └── tip.html └── studentManage 学生就业管理系统Django框架核心配置 ├── settings.py ├── urls.py ├── views.py └── wsgi.py ``` ### 项目架构介绍 ![项目架构介绍](studentManage.png) ### 使用说明 * 使用Pycharm运行此项目 ### 联系我们 - QQ: 1587311770 欢迎提出意见与建议~