dingdanquanliucheng/backend/app/models/__init__.py
2026-05-14 10:15:51 +08:00

38 lines
853 B
Python

from backend.app.models.auth import SysMenu, SysRole, SysUser
from backend.app.models.base import BaseModel
from backend.app.models.business import BaseSupplier, CrmCustomer, Product, SalesOrder, SalesOrderItem
from backend.app.models.ops import (
AIRecognitionLog,
AuditLog,
CustomerArrears,
FileAttachment,
LogisticsTask,
LogisticsTrace,
PerformanceStatCache,
SalesOrderApproveLog,
SystemConfig,
SystemReminder,
)
__all__ = [
"BaseModel",
"SysUser",
"SysRole",
"SysMenu",
"CrmCustomer",
"Product",
"BaseSupplier",
"SalesOrder",
"SalesOrderItem",
"SalesOrderApproveLog",
"LogisticsTask",
"LogisticsTrace",
"CustomerArrears",
"SystemReminder",
"SystemConfig",
"FileAttachment",
"AIRecognitionLog",
"PerformanceStatCache",
"AuditLog",
]