2024-10-14 21:18:07 +04:00
|
|
|
from base import Base
|
2024-10-14 19:49:54 +04:00
|
|
|
from sqlalchemy.orm import Mapped, mapped_column
|
|
|
|
|
|
|
|
class RecyclingParameters(Base):
|
|
|
|
__tablename__ = 'RecyclingParameters'
|
|
|
|
|
2024-10-14 21:18:07 +04:00
|
|
|
id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True)
|
2024-10-14 19:49:54 +04:00
|
|
|
load_id: Mapped[int]
|
|
|
|
recycling_level: Mapped[int]
|
|
|
|
co2: Mapped[float]
|
|
|
|
n2: Mapped[float]
|
|
|
|
h2o: Mapped[float]
|
|
|
|
o2: Mapped[float]
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return f"<RecyclingParameters>"
|