<?php
declare(strict_types=1);
namespace App\Entity;
use App\Repository\ProduitRelatedVersionRepository;
use Doctrine\ORM\Mapping as ORM;
use Knp\DoctrineBehaviors\Contract\Entity\TranslationInterface;
use Knp\DoctrineBehaviors\Model\Translatable\TranslationTrait;
#[ORM\Entity(repositoryClass: ProduitRelatedVersionRepository::class)]
class ProduitRelatedVersionTranslation implements TranslationInterface
{
use TranslationTrait;
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pompePressionWhirlpool = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pompeFiltrationWhirlpool = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $puissanceRechauffeur = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $isolationThermoISO14000 = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $commandeADistance = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pompesAAir = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $wifi = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $bluetooth = null;
public function getFinitionBuse(): ?string
{
return $this->finitionBuse;
}
public function setFinitionBuse(?string $finitionBuse): self
{
$this->finitionBuse = $finitionBuse;
return $this;
}
public function getEnceinte(): ?string
{
return $this->enceinte;
}
public function setEnceinte(?string $enceinte): self
{
$this->enceinte = $enceinte;
return $this;
}
public function getPompePressionWhirlpool(): ?string
{
return $this->pompePressionWhirlpool;
}
public function setPompePressionWhirlpool(?string $pompePressionWhirlpool): self
{
$this->pompePressionWhirlpool = $pompePressionWhirlpool;
return $this;
}
public function getPompeFiltrationWhirlpool(): ?string
{
return $this->pompeFiltrationWhirlpool;
}
public function setPompeFiltrationWhirlpool(?string $pompeFiltrationWhirlpool): self
{
$this->pompeFiltrationWhirlpool = $pompeFiltrationWhirlpool;
return $this;
}
public function getPuissanceRechauffeur(): ?string
{
return $this->puissanceRechauffeur;
}
public function setPuissanceRechauffeur(?string $puissanceRechauffeur): self
{
$this->puissanceRechauffeur = $puissanceRechauffeur;
return $this;
}
public function isSpotArcEnCiel(): ?bool
{
return $this->spotArcEnCiel;
}
public function setSpotArcEnCiel(?bool $spotArcEnCiel): static
{
$this->spotArcEnCiel = $spotArcEnCiel;
return $this;
}
public function getId(): ?int
{
return $this->id;
}
public function getIsolationThermoISO14000(): ?string
{
return $this->isolationThermoISO14000;
}
public function setIsolationThermoISO14000(?string $isolationThermoISO14000): static
{
$this->isolationThermoISO14000 = $isolationThermoISO14000;
return $this;
}
public function getCommandeADistance(): ?string
{
return $this->commandeADistance;
}
public function setCommandeADistance(?string $commandeADistance): static
{
$this->commandeADistance = $commandeADistance;
return $this;
}
public function getPompesAAir(): ?string
{
return $this->pompesAAir;
}
public function setPompesAAir(?string $pompesAAir): static
{
$this->pompesAAir = $pompesAAir;
return $this;
}
public function getWifi()
{
return $this->wifi;
}
public function setWifi($wifi): static
{
$this->wifi = $wifi;
return $this;
}
public function getBluetooth()
{
return $this->bluetooth;
}
public function setBluetooth($bluetooth): static
{
$this->bluetooth = $bluetooth;
return $this;
}
}