dingdanquanliucheng/backend/app/models/__init__.py

31 lines
603 B
Python

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