34 lines
742 B
Python
34 lines
742 B
Python
# ================================================================
|
|
# services/production/app/models/__init__.py
|
|
# ================================================================
|
|
"""
|
|
Production service models
|
|
"""
|
|
|
|
from .production import (
|
|
ProductionBatch,
|
|
ProductionSchedule,
|
|
ProductionCapacity,
|
|
QualityCheckTemplate,
|
|
QualityCheck,
|
|
Equipment,
|
|
ProductionStatus,
|
|
ProductionPriority,
|
|
EquipmentStatus,
|
|
ProcessStage,
|
|
EquipmentType,
|
|
)
|
|
|
|
__all__ = [
|
|
"ProductionBatch",
|
|
"ProductionSchedule",
|
|
"ProductionCapacity",
|
|
"QualityCheckTemplate",
|
|
"QualityCheck",
|
|
"Equipment",
|
|
"ProductionStatus",
|
|
"ProductionPriority",
|
|
"EquipmentStatus",
|
|
"ProcessStage",
|
|
"EquipmentType",
|
|
] |