Files
student_manage_system/README.md
T
2026-09-22 15:33:09 +08:00

33 lines
944 B
Markdown
Raw 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.
# 学生管理系统
## 教师篇
**main:主程序文件、测试接口**\
1 下面所有配置文件的接口全部导入并建表\
2 创建fastapi接口并本地运行\
**api:接口文件**\
*教师表Teacher的功能接口:*\
1.教师信息的查询\
2.教师信息的新增\
3.教师信息的更新\
4.教师信息的逻辑删除\
**dao数据筛选文件**\
1.查询 get_tea_dao:\
2.新增 add_tea_dao:\
3.更新 update_tea_dao:\
4.逻辑删除 delete_tea_dao:\
**tea_model数据库建表文件**\
1.教师表\
字段名:id、name、sex、class_id、sub(学科)\
home_place specialty(专业)、start_time(入职时间)\
work_experience、collage、creat_date、update_date\
is_delete、delete_time\
2.学科表\
字段名:id,name(科目名字)
**schema 请求体、响应体**\
请求体:设置了两个,一个带自增组件用于查询\
一个不带自增组件,新增用;\
响应体:用于返回给前端