mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-22 13:05:18 +00:00
feat: 新增系统租户和用户初始化数据 style: 优化代码注释和格式 fix: 修复数据权限检查逻辑中的created_id字段判断 perf: 移除不必要的模型关系以提升性能 docs: 更新初始化数据的描述信息 chore: 清理废弃文件和冗余代码
28 lines
1.2 KiB
Python
28 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
from sqlalchemy import String
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
|
|
from app.core.base_model import ModelMixin, UserMixin, TenantMixin, CustomerMixin
|
|
|
|
|
|
class ApplicationModel(ModelMixin, UserMixin, TenantMixin, CustomerMixin):
|
|
"""
|
|
应用系统表 - 用于管理分系统和外部应用
|
|
|
|
数据隔离策略:
|
|
===========
|
|
- 系统级应用: tenant_id=1, customer_id=NULL (平台级应用,所有租户可见)
|
|
- 租户级应用: tenant_id>1, customer_id=NULL (租户自己的应用,仅本租户可见)
|
|
- 客户级应用: tenant_id>1, customer_id>0 (客户专属应用,仅该客户可见)
|
|
|
|
根据业务需求,此表支持三级隔离
|
|
"""
|
|
__tablename__: str = 'app_myapp'
|
|
__table_args__: dict[str, str] = ({'comment': '应用系统表'})
|
|
__loader_options__: list[str] = ["created_by", "updated_by", "tenant", "customer"]
|
|
|
|
name: Mapped[str] = mapped_column(String(64), nullable=False, comment='应用名称')
|
|
access_url: Mapped[str] = mapped_column(String(500), nullable=False, comment='访问地址')
|
|
icon_url: Mapped[str | None] = mapped_column(String(300), nullable=True, comment='应用图标URL')
|