Files
pickling-mes/backend/app/schemas/__init__.py

8 lines
628 B
Python
Raw Normal View History

from app.schemas.common import Response, PageResponse, PageParams
from app.schemas.user import UserCreate, UserUpdate, UserOut, Token, LoginRequest
from app.schemas.material import CoilCreate, CoilUpdate, CoilOut, TrackingCreate, TrackingOut
from app.schemas.production import ProductionRecordCreate, ProductionRecordUpdate, ProductionRecordOut
from app.schemas.plan import PlanCreate, PlanUpdate, PlanOut
from app.schemas.downtime import DowntimeCreate, DowntimeUpdate, DowntimeOut, CategoryCreate, CategoryOut
from app.schemas.equipment import EquipmentCreate, EquipmentUpdate, EquipmentOut, MaintenanceCreate, MaintenanceOut