基于Web的高校闲置物品交易系统设计与实现
基于Web的高校闲置物品交易系统设计与实现
本文介绍了基于Web的高校闲置物品交易系统的设计与实现,该系统旨在为高校学生提供一个便捷的平台,用于交易闲置物品,实现资源共享和节约。
1. 用例图

2. 数据库设计

3. 代码结构
.
├── README.md
├── app
│ ├── __init__.py
│ ├── admin
│ │ ├── __init__.py
│ │ └── views.py
│ ├── auth
│ │ ├── __init__.py
│ │ ├── forms.py
│ │ └── views.py
│ ├── errors
│ │ ├── __init__.py
│ │ └── handlers.py
│ ├── goods
│ │ ├── __init__.py
│ │ ├── forms.py
│ │ ├── models.py
│ │ └── views.py
│ ├── main
│ │ ├── __init__.py
│ │ ├── forms.py
│ │ └── views.py
│ ├── static
│ │ ├── css
│ │ ├── fonts
│ │ ├── images
│ │ └── js
│ └── templates
│ ├── 404.html
│ ├── 500.html
│ ├── base.html
│ ├── index.html
│ ├── login.html
│ ├── register.html
│ ├── user.html
│ └── view.html
├── config.py
├── manage.py
├── migrations
│ ├── README
│ ├── alembic.ini
│ ├── env.py
│ ├── script.py.mako
│ └── versions
├── requirements.txt
└── tests
├── __init__.py
├── test_basics.py
├── test_goods.py
└── test_users.py
4. 依赖列表
alembic==1.6.5
bcrypt==3.2.0
blinker==1.4
certifi==2020.12.5
chardet==4.0.0
click==8.0.1
Flask==2.0.0
Flask-Bootstrap==3.3.7.1
Flask-Login==0.5.0
Flask-Mail==0.9.1
Flask-Migrate==3.0.0
Flask-Moment==1.0.2
Flask-PyMongo==2.3.0
Flask-Script==2.0.6
Flask-SocketIO==5.1.1
Flask-WTF==0.14.3
greenlet==1.1.0
gunicorn==20.1.0
idna==2.10
itsdangerous==2.0.0
Jinja2==3.0.0
Mako==1.1.4
MarkupSafe==2.0.0
pycparser==2.20
PyMySQL==1.0.2
python-dateutil==2.8.1
python-dotenv==0.17.0
python-editor==1.0.4
requests==2.25.1
six==1.16.0
SQLAlchemy==1.4.17
urllib3==1.26.4
Werkzeug==2.0.0
WTForms==2.3.3
原文地址: https://www.cveoy.top/t/topic/lJDd 著作权归作者所有。请勿转载和采集!