1
0
forked from erp-dev/erp
Files
erpnew/api_v2/views/__init__.py

33 lines
837 B
Python

"""
api_v2 视图包。
"""
from .healthy import HealthCheckView
from .users import QuickCreateEmployeeUserView
from .printing import (
PrintingJobByCustomerView,
PrintingJobV2Serializer,
PrintingJobBatchAdvancePreviewView,
PrintingJobBatchAdvanceSubmitView,
PlateOrderByProcessNodeView,
PlateOrderByProcessView,
PlateOrderByStateStatusView,
PlateOrderBatchUpdateView,
)
from .stateflow import BusinessObjectCloneView
__all__ = [
'HealthCheckView',
'QuickCreateEmployeeUserView',
'PrintingJobByCustomerView',
'PrintingJobV2Serializer',
'PrintingJobBatchAdvancePreviewView',
'PrintingJobBatchAdvanceSubmitView',
'PlateOrderByProcessNodeView',
'PlateOrderByProcessView',
'PlateOrderByStateStatusView',
'PlateOrderBatchUpdateView',
'BusinessObjectCloneView',
]