This commit is contained in:
2026-01-15 18:08:08 +08:00
parent 5586e98e51
commit 4a51ec89cc
21 changed files with 184 additions and 72 deletions

View File

@@ -1,6 +1,7 @@
from sqlmodel import Session, SQLModel, create_engine
from config import Settings
from config import Settings
from model.model import Department, Employee, Tenant
PGSQL = Settings().PGSQL
@@ -17,4 +18,3 @@ def get_engine():
def get_session():
return Session(get_engine())