10 lines
275 B
Python
10 lines
275 B
Python
from fastapi import APIRouter,Depends,HTTPException,Path
|
|
from util.database import get_db
|
|
from model.all_model import Student_Model
|
|
|
|
gradeAPI = APIRouter()
|
|
|
|
@gradeAPI.get(f"/grade/{id}",summary="根据ID查询单条成绩")
|
|
def get_grade(id:int,db=Depends(get_db)):
|
|
pass
|