<?phpnamespace App\Entity;use App\Repository\ParametreRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ParametreRepository::class)]#[ORM\Table(name: "Parametre")]class Parametre{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'integer')] private ?int $id = null; #[ORM\Column(length: 255)] private ?string $rue = null; #[ORM\Column(length: 255)] private ?string $bp = null; #[ORM\Column(length: 255)] private ?string $cms = null; #[ORM\Column(length: 255)] private ?string $telsiege = null; #[ORM\Column(length: 255)] private ?string $telclinique = null; public function getId(): ?int { return $this->id; } public function getRue(): ?string { return $this->rue; } public function setRue($rue): self { $this->rue = $rue; return $this; } public function getCms(): ?string { return $this->cms; } public function setCms($cms): self { $this->cms = $cms; return $this; } public function getBp(): ?string { return $this->bp; } public function setBp($bp): self { $this->bp = $bp; return $this; } public function getTelsiege(): ?string { return $this->telsiege; } public function setTelsiege($telsiege): self { $this->telsiege = $telsiege; return $this; } public function getTelclinique(): ?string { return $this->telclinique; } public function setTelclinique($telclinique): self { $this->telclinique = $telclinique; return $this; } }