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