26 lines
860 B
Python
26 lines
860 B
Python
|
|
from app.models.user import User
|
||
|
|
from app.models.material import Coil, MaterialTracking
|
||
|
|
from app.models.production import ProductionRecord
|
||
|
|
from app.models.plan import ProductionPlan
|
||
|
|
from app.models.downtime import DowntimeRecord, DowntimeCategory
|
||
|
|
from app.models.equipment import Equipment, EquipmentMaintenance
|
||
|
|
from app.models.message import MessageLog
|
||
|
|
from app.models.pdi import PDIRecord
|
||
|
|
from app.models.quality import QualityRecord
|
||
|
|
from app.models.energy import EnergyRecord
|
||
|
|
from app.models.inspection import InspectionLocation, InspectionRecord
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"User",
|
||
|
|
"Coil", "MaterialTracking",
|
||
|
|
"ProductionRecord",
|
||
|
|
"ProductionPlan",
|
||
|
|
"DowntimeRecord", "DowntimeCategory",
|
||
|
|
"Equipment", "EquipmentMaintenance",
|
||
|
|
"MessageLog",
|
||
|
|
"PDIRecord",
|
||
|
|
"QualityRecord",
|
||
|
|
"EnergyRecord",
|
||
|
|
"InspectionLocation", "InspectionRecord",
|
||
|
|
]
|