feat: 添加系统配置,更新验证码接口

This commit is contained in:
2025-02-12 23:25:19 +08:00
parent 46e9e79670
commit 2f28d6d5e0
15 changed files with 362 additions and 35 deletions

View File

@@ -6,13 +6,14 @@
# @Software : PyCharm
# @Comment : 本程序
from models.config import Config
from models.department import Department, DepartmentRole
from models.file import File
from models.i18n import I18n, Locale
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',
@@ -26,5 +27,6 @@ __all__ = [
'User',
'UserRole',
'I18n',
'Locale'
'Locale',
'Config'
]