class DeviceModel(Base):
__tablename__ = "device"
id: Mapped[int] = mapped_column(primary_key=True)
uuid: Mapped[str] = mapped_column(String(250))
date_created: Mapped[datetime] = mapped_column(DateTime())
external_id: Mapped[str] = mapped_column(String(50))
mac: Mapped[str] = mapped_column(String(50))
...