Files
fastapi-project-template/models/__init__.py
2025-02-12 02:38:29 +08:00

31 lines
676 B
Python

# _*_ coding : UTF-8 _*_
# @Time : 2025/01/18 02:42
# @UpdateTime : 2025/01/18 02:42
# @Author : sonder
# @File : __init__.py.py
# @Software : PyCharm
# @Comment : 本程序
from models.department import Department, DepartmentRole
from models.file import File
from models.log import LoginLog, OperationLog
from models.permission import Permission
from models.role import Role, RolePermission
from models.user import User, UserRole
from models.i18n import I18n,Locale
__all__ = [
'Department',
'DepartmentRole',
'File',
'LoginLog',
'OperationLog',
'Permission',
'Role',
'RolePermission',
'User',
'UserRole',
'I18n',
'Locale'
]