from sqlalchemy.orm import Mapped, mapped_column from service.database import ORMBase class MachineORM(ORMBase): __tablename__ = "machines" id: Mapped[int] = mapped_column(primary_key=True) caption: Mapped[str]