dingdanquanliucheng/backend/app/models/__init__.py

37 lines
731 B
Python

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