10 lines
222 B
Python
10 lines
222 B
Python
from fastapi import Depends
|
|
|
|
from util.database import get_db
|
|
|
|
from model.grade_model import *
|
|
|
|
|
|
def get_grade( stu_id:int
|
|
,db=Depends(get_db)):
|
|
r =db.query(WlScore).filter(WlScore.stu_id == stu_id).all() |