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

28 lines
535 B
Python

from backend.app.models.base import AuditMixin, TimestampMixin
from backend.app.models.business import (
Customer,
LogisticsTask,
Product,
ProductCategory,
SalesOrder,
SalesOrderItem,
Supplier,
)
from backend.app.models.system import Menu, Role, SystemConfig, User
__all__ = [
"AuditMixin",
"TimestampMixin",
"Customer",
"LogisticsTask",
"Product",
"ProductCategory",
"SalesOrder",
"SalesOrderItem",
"Supplier",
"Menu",
"Role",
"SystemConfig",
"User",
]