from typing import TYPE_CHECKING from api.v1.common.base_models import TenantScopedMixin, TimestampMixin from core.database import Base from sqlalchemy import ( ForeignKeyConstraint, Integer, Numeric, PrimaryKeyConstraint, String, UniqueConstraint, ) from sqlalchemy.orm import Mapped, mapped_column, relationship if TYPE_CHECKING: from api.v1.modules.a76.pedmientos.models.pedimentos import Pedimentos class PedimentoPackages(Base, TenantScopedMixin, TimestampMixin): __tablename__ = "pedimento_packages" __table_args__ = ( PrimaryKeyConstraint("id", name="pedimento_packages_pkey"), ForeignKeyConstraint( ["pedimento_id"], ["a76.pedimentos.id"], ondelete="CASCADE", name="fk_pedimento_packages", ), UniqueConstraint( "tenant_id", "company_id", "pedimento_id", name="pedimento_packages_pedimento_id_key", ), {"schema": "a76"}, ) id: Mapped[int] = mapped_column(Integer) pedimento_id: Mapped[int] = mapped_column(Integer, nullable=False) quantity: Mapped[int | None] = mapped_column(Integer, nullable=True) brand: Mapped[str | None] = mapped_column(String(100), nullable=True) number: Mapped[str | None] = mapped_column(String(100), nullable=True) vehicles: Mapped[int | None] = mapped_column(Integer, nullable=True) pedimento: Mapped["Pedimentos"] = relationship( "Pedimentos", back_populates="pedimento_packages" )