1
This commit is contained in:
@@ -52,7 +52,7 @@ def update_students(stu_id:int
|
|||||||
raise HTTPException(status_code=404, detail='学生不存在或已被删除,更新失败')
|
raise HTTPException(status_code=404, detail='学生不存在或已被删除,更新失败')
|
||||||
return {'code':200,'totals':r,'detail':'更新成功'}
|
return {'code':200,'totals':r,'detail':'更新成功'}
|
||||||
|
|
||||||
@StudentAPI.delete('/students/{stu_id}',response_model= StugetResponse,summary='学生信息删除接口',description='删除学生信息')
|
@StudentAPI.delete('/students/{stu_id}',response_model= StudelResponse,summary='学生信息删除接口',description='删除学生信息')
|
||||||
def del_students(stu_id:int
|
def del_students(stu_id:int
|
||||||
,db=Depends(get_db)):
|
,db=Depends(get_db)):
|
||||||
rows=delete_student_dao( stu_id=stu_id,db=db )
|
rows=delete_student_dao( stu_id=stu_id,db=db )
|
||||||
|
|||||||
@@ -99,4 +99,10 @@ class StuPageResponse(BaseModel):
|
|||||||
totals: int
|
totals: int
|
||||||
data: List[StugetResponse]
|
data: List[StugetResponse]
|
||||||
|
|
||||||
|
class StudelResponse(BaseModel):
|
||||||
|
code: int = 200
|
||||||
|
detail: str = "ok"
|
||||||
|
totals: int
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user