Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.entreprise-traitement-humidite.fr
/
htdocs
/
src
/
Entity
/
/srv/data/web/vhosts/www.entreprise-traitement-humidite.fr/htdocs/src/Entity/Configuration.php
<?php namespace App\Entity; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity(repositoryClass="App\Repository\ConfigurationRepository") */ class Configuration { /** * @ORM\Id() * @ORM\GeneratedValue() * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=255) */ private $name; /** * @ORM\Column(type="string", length=255) */ private $value; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $zonePoids; /** * @ORM\Column(type="integer", nullable=true) */ private $valeurPoids; public function getId(): ?int { return $this->id; } public function getName(): ?string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function getValue(): ?string { return $this->value; } public function setValue(string $value): self { $this->value = $value; return $this; } public function getZonePoids(): ?string { return $this->zonePoids; } public function setZonePoids(?string $zonePoids): self { $this->zonePoids = $zonePoids; return $this; } public function getValeurPoids(): ?int { return $this->valeurPoids; } public function setValeurPoids(?int $valeurPoids): self { $this->valeurPoids = $valeurPoids; return $this; } }