src/Entity/ProduitRelatedVersionTranslation.php line 13

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);    
  3. namespace App\Entity;
  4. use App\Repository\ProduitRelatedVersionRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Knp\DoctrineBehaviors\Contract\Entity\TranslationInterface;
  7. use Knp\DoctrineBehaviors\Model\Translatable\TranslationTrait;
  8. #[ORM\Entity(repositoryClassProduitRelatedVersionRepository::class)]
  9. class ProduitRelatedVersionTranslation implements TranslationInterface
  10. {
  11.     use TranslationTrait;
  12.     #[ORM\Id]
  13.     #[ORM\GeneratedValue]
  14.     #[ORM\Column(type'integer')]
  15.     private $id;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $pompePressionWhirlpool null;
  18.      #[ORM\Column(length255nullabletrue)]
  19.     private ?string $pompeFiltrationWhirlpool null;
  20.     
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $puissanceRechauffeur null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $isolationThermoISO14000 null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $commandeADistance null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $pompesAAir null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $wifi null;
  31.     #[ORM\Column(length255nullabletrue)]
  32.     private ?string $bluetooth null;
  33.     public function getFinitionBuse(): ?string
  34.     {
  35.         return $this->finitionBuse;
  36.     }
  37.     public function setFinitionBuse(?string $finitionBuse): self
  38.     {
  39.         $this->finitionBuse $finitionBuse;
  40.         return $this;
  41.     }
  42.     public function getEnceinte(): ?string
  43.     {
  44.         return $this->enceinte;
  45.     }
  46.     public function setEnceinte(?string $enceinte): self
  47.     {
  48.         $this->enceinte $enceinte;
  49.         return $this;
  50.     }
  51.     public function getPompePressionWhirlpool(): ?string
  52.     {
  53.         return $this->pompePressionWhirlpool;
  54.     }
  55.     public function setPompePressionWhirlpool(?string $pompePressionWhirlpool): self
  56.     {
  57.         $this->pompePressionWhirlpool $pompePressionWhirlpool;
  58.         return $this;
  59.     }
  60.     public function getPompeFiltrationWhirlpool(): ?string
  61.     {
  62.         return $this->pompeFiltrationWhirlpool;
  63.     }
  64.     public function setPompeFiltrationWhirlpool(?string $pompeFiltrationWhirlpool): self
  65.     {
  66.         $this->pompeFiltrationWhirlpool $pompeFiltrationWhirlpool;
  67.         return $this;
  68.     }
  69.     public function getPuissanceRechauffeur(): ?string
  70.     {
  71.         return $this->puissanceRechauffeur;
  72.     }
  73.     public function setPuissanceRechauffeur(?string $puissanceRechauffeur): self
  74.     {
  75.         $this->puissanceRechauffeur $puissanceRechauffeur;
  76.         return $this;
  77.     }
  78.     public function isSpotArcEnCiel(): ?bool
  79.     {
  80.         return $this->spotArcEnCiel;
  81.     }
  82.     public function setSpotArcEnCiel(?bool $spotArcEnCiel): static
  83.     {
  84.         $this->spotArcEnCiel $spotArcEnCiel;
  85.         return $this;
  86.     }
  87.    
  88.     public function getId(): ?int
  89.     {
  90.         return $this->id;
  91.     }
  92.     public function getIsolationThermoISO14000(): ?string
  93.     {
  94.         return $this->isolationThermoISO14000;
  95.     }
  96.     public function setIsolationThermoISO14000(?string $isolationThermoISO14000): static
  97.     {
  98.         $this->isolationThermoISO14000 $isolationThermoISO14000;
  99.         return $this;
  100.     }
  101.      public function getCommandeADistance(): ?string
  102.     {
  103.         return $this->commandeADistance;
  104.     }
  105.     public function setCommandeADistance(?string $commandeADistance): static
  106.     {
  107.         $this->commandeADistance $commandeADistance;
  108.         return $this;
  109.     }
  110.     public function getPompesAAir(): ?string
  111.     {
  112.         return $this->pompesAAir;
  113.     }
  114.     public function setPompesAAir(?string $pompesAAir): static
  115.     {
  116.         $this->pompesAAir $pompesAAir;
  117.         return $this;
  118.     }
  119.     public function getWifi()
  120.     {
  121.         return $this->wifi;
  122.     }
  123.     public function setWifi($wifi): static
  124.     {
  125.         $this->wifi $wifi;
  126.         return $this;
  127.     }
  128.     public function getBluetooth()
  129.     {
  130.         return $this->bluetooth;
  131.     }
  132.     public function setBluetooth($bluetooth): static
  133.     {
  134.         $this->bluetooth $bluetooth;
  135.         return $this;
  136.     }
  137. }