src/Entity/Niveau.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. #[ORM\Entity(repositoryClass"App\Repository\NiveauRepository")]
  5. class Niveau
  6. {
  7.     #[ORM\Id]
  8.     #[ORM\GeneratedValue]
  9.     #[ORM\Column(type"integer")]
  10.     private ?int $id;
  11.     #[ORM\Column(type"string"length255)]
  12.     private ?string $niveau;
  13.     #[ORM\Column(type"integer"nullabletrue)]
  14.     private ?int $niveauIndex;
  15.     #[ORM\Column(type"datetime")]
  16.     private ?\DateTimeInterface $date_creation;
  17.     #[ORM\Column(type"boolean")]
  18.     private ?bool $etat;
  19.     public function getId(): ?int
  20.     {
  21.         return $this->id;
  22.     }
  23.     public function getNiveau(): ?string
  24.     {
  25.         return $this->niveau;
  26.     }
  27.     public function setNiveau(?string $niveau): self
  28.     {
  29.         $this->niveau $niveau;
  30.         return $this;
  31.     }
  32.     public function getIndex(): ?int
  33.     {
  34.         return $this->niveauIndex;
  35.     }
  36.     public function setniveauIndex(?int $niveauIndex): self
  37.     {
  38.         $this->niveauIndex $niveauIndex;
  39.         return $this;
  40.     }
  41.     public function getDateCreation(): ?\DateTimeInterface
  42.     {
  43.         return $this->date_creation;
  44.     }
  45.     public function setDateCreation(?\DateTimeInterface $date_creation): self
  46.     {
  47.         $this->date_creation $date_creation;
  48.         return $this;
  49.     }
  50.     public function getEtat(): ?bool
  51.     {
  52.         return $this->etat;
  53.     }
  54.     public function setEtat(?bool $etat): self
  55.     {
  56.         $this->etat $etat;
  57.         return $this;
  58.     }
  59. }