22 lines
481 B
Python
22 lines
481 B
Python
# ================================================================
|
|
# services/production/app/models/__init__.py
|
|
# ================================================================
|
|
"""
|
|
Production service models
|
|
"""
|
|
|
|
from .production import (
|
|
ProductionBatch,
|
|
ProductionSchedule,
|
|
ProductionCapacity,
|
|
QualityCheck,
|
|
ProductionAlert
|
|
)
|
|
|
|
__all__ = [
|
|
"ProductionBatch",
|
|
"ProductionSchedule",
|
|
"ProductionCapacity",
|
|
"QualityCheck",
|
|
"ProductionAlert"
|
|
] |