dingdanquanliucheng/backend/app/models/__init__.py

40 lines
803 B
Python
Raw Normal View History

2026-05-14 13:51:06 +08:00
from backend.app.models.base import AuditMixin, TimestampMixin
from backend.app.models.business import (
AIRecognitionLog,
2026-05-14 13:51:06 +08:00
Customer,
CustomerArrears,
FileAttachment,
2026-05-14 10:15:51 +08:00
LogisticsTask,
LogisticsTrace,
2026-05-14 13:51:06 +08:00
Product,
ProductCategory,
SalesOrder,
SalesOrderItem,
Supplier,
SystemReminder,
2026-05-14 10:15:51 +08:00
)
from backend.app.models.system import AuditLog, Menu, Role, RoleMenu, SystemConfig, User
2026-05-14 10:15:51 +08:00
__all__ = [
2026-05-14 13:51:06 +08:00
"AuditMixin",
"TimestampMixin",
"Customer",
"CustomerArrears",
"FileAttachment",
2026-05-14 13:51:06 +08:00
"LogisticsTask",
"LogisticsTrace",
"AIRecognitionLog",
2026-05-14 10:15:51 +08:00
"Product",
2026-05-14 13:51:06 +08:00
"ProductCategory",
2026-05-14 10:15:51 +08:00
"SalesOrder",
"SalesOrderItem",
2026-05-14 13:51:06 +08:00
"Supplier",
"SystemReminder",
2026-05-14 13:51:06 +08:00
"Menu",
"Role",
"RoleMenu",
"AuditLog",
2026-05-14 10:15:51 +08:00
"SystemConfig",
2026-05-14 13:51:06 +08:00
"User",
2026-05-14 10:15:51 +08:00
]