35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
from decimal import Decimal
|
|
|
|
from api.v1.common.base_models import TenantScopedMixin, TimestampMixin
|
|
from core.database import Base
|
|
from sqlalchemy import (
|
|
Boolean,
|
|
ForeignKeyConstraint,
|
|
Integer,
|
|
Numeric,
|
|
PrimaryKeyConstraint,
|
|
String,
|
|
)
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
|
|
|
|
class QClasses(Base, TenantScopedMixin, TimestampMixin):
|
|
__tablename__ = "fa_classes" # QClases
|
|
__table_args__ = (
|
|
PrimaryKeyConstraint("id", name="qclases_pk"),
|
|
ForeignKeyConstraint(["class_id"], ["a76.classes.id"], name="fk_qclasses_classes"),
|
|
{"schema": "a24"},
|
|
)
|
|
|
|
id: Mapped[int] = mapped_column(Integer, primary_key=True)
|
|
class_id: Mapped[int] = mapped_column(Integer, nullable=False)
|
|
|
|
import_tariff_code: Mapped[str] = mapped_column(String(10)) # FRACCIONIMPO
|
|
import_tariff_type: Mapped[str] = mapped_column(String(6)) # TIPOFRACIMPO
|
|
export_tariff_code: Mapped[str] = mapped_column(String(10)) # FRACCIONEXPO
|
|
export_tariff_type: Mapped[str] = mapped_column(String(6)) # TIPOFRACEXPO
|
|
depreciation_rate: Mapped[Decimal] = mapped_column(Numeric(5, 2)) # TASADEPRECIA
|
|
fda_code: Mapped[str] = mapped_column(String(20)) # FDA
|
|
eccn_code: Mapped[str] = mapped_column(String(20)) # ECCN
|
|
class_enabled: Mapped[bool] = mapped_column(Boolean) # HABILITADESHABILITACLASE
|