mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-23 05:10:57 +00:00
此次提交进行了大规模的架构重构: 1. 移除所有平台租户相关模块和代码,包括租户管理、套餐、订单、发票等功能 2. 将菜单模块从platform迁移到system模块,统一系统功能入口 3. 移除租户隔离相关的模型混入、中间件和配置 4. 简化文件上传、SSE事件总线、定时任务等模块的租户逻辑 5. 重构所有业务schema和模型,移除租户相关字段和关联 6. 清理初始化脚本、模板和常量中的租户相关代码 7. 简化认证和权限控制逻辑,移除数据范围检查相关代码
57 lines
2.7 KiB
Python
57 lines
2.7 KiB
Python
from sqlalchemy import Integer, String, Text
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
|
|
from app.config.setting import settings
|
|
from app.core.base_model import ModelMixin
|
|
|
|
|
|
def get_log_text_column_type():
|
|
"""根据数据库类型选择适合存储大文本的列类型。
|
|
"""
|
|
db_type = settings.DATABASE_TYPE
|
|
if db_type == "mysql":
|
|
from sqlalchemy.dialects.mysql import LONGTEXT
|
|
|
|
return LONGTEXT
|
|
if db_type == "postgres":
|
|
from sqlalchemy.dialects.postgresql import TEXT
|
|
|
|
return TEXT
|
|
return Text
|
|
|
|
|
|
class LoginLogModel(ModelMixin):
|
|
"""登录日志模型
|
|
"""
|
|
|
|
__tablename__: str = "sys_login_log"
|
|
__table_args__: dict[str, str] = {"comment": "登录日志表"}
|
|
|
|
status: Mapped[int] = mapped_column(Integer, default=1, comment="登录状态(1成功 2失败)", index=True)
|
|
description: Mapped[str | None] = mapped_column(Text, default=None, nullable=True, comment="备注")
|
|
username: Mapped[str] = mapped_column(String(64), nullable=False, comment="用户名")
|
|
login_location: Mapped[str | None] = mapped_column(String(255), nullable=True, comment="登录位置")
|
|
login_ip: Mapped[str | None] = mapped_column(String(50), nullable=True, comment="登录IP地址")
|
|
request_os: Mapped[str | None] = mapped_column(String(64), nullable=True, comment="操作系统")
|
|
request_browser: Mapped[str | None] = mapped_column(String(64), nullable=True, comment="浏览器")
|
|
msg: Mapped[str | None] = mapped_column(String(255), nullable=True, comment="提示消息")
|
|
|
|
|
|
class OperationLogModel(ModelMixin):
|
|
"""操作日志模型
|
|
"""
|
|
|
|
__tablename__: str = "sys_operation_log"
|
|
__table_args__: dict[str, str] = {"comment": "操作日志表"}
|
|
|
|
username: Mapped[str] = mapped_column(String(64), nullable=False, comment="操作人用户名")
|
|
status: Mapped[int] = mapped_column(Integer, default=0, nullable=False, comment="操作状态(0:成功 1:失败)", index=True)
|
|
description: Mapped[str | None] = mapped_column(Text, default=None, nullable=True, comment="备注")
|
|
request_path: Mapped[str] = mapped_column(String(255), comment="请求路径")
|
|
request_method: Mapped[str] = mapped_column(String(10), comment="请求方式")
|
|
request_payload: Mapped[str | None] = mapped_column(get_log_text_column_type(), comment="请求体")
|
|
response_code: Mapped[int] = mapped_column(Integer, comment="响应状态码")
|
|
response_json: Mapped[str | None] = mapped_column(get_log_text_column_type(), nullable=True, comment="响应体")
|
|
process_time: Mapped[str | None] = mapped_column(String(20), nullable=True, comment="处理时间")
|
|
request_ip: Mapped[str | None] = mapped_column(String(50), nullable=True, index=True, comment="请求IP")
|