Merge pull request 'Nanfangyu0824' (#36) from nanfangyu0824 into main
Reviewed-on: #36
This commit was merged in pull request #36.
This commit is contained in:
+10
-13
@@ -1,19 +1,16 @@
|
||||
from fastapi import APIRouter, Depends, HTTPException, Query
|
||||
from sqlalchemy.orm import Session
|
||||
from core.database import get_db
|
||||
from dao.employment import (
|
||||
create_employment,
|
||||
get_employment_by_id,
|
||||
get_employment_by_student_id,
|
||||
get_employment_list,
|
||||
update_employment,
|
||||
delete_employment_logic
|
||||
)
|
||||
from schemas.employment import (
|
||||
EmploymentCreate,
|
||||
EmploymentUpdate,
|
||||
EmploymentResponse
|
||||
)
|
||||
from dao.employment import (create_employment,
|
||||
get_employment_by_id,
|
||||
get_employment_by_student_id,
|
||||
get_employment_list,
|
||||
update_employment,
|
||||
delete_employment_logic)
|
||||
|
||||
from schemas.employment import (EmploymentCreate,
|
||||
EmploymentUpdate,
|
||||
EmploymentResponse)
|
||||
|
||||
employment_router = APIRouter(prefix="/employments", tags=["就业管理模块"])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user