<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: "App\Repository\NiveauRepository")]
class Niveau
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: "integer")]
private ?int $id;
#[ORM\Column(type: "string", length: 255)]
private ?string $niveau;
#[ORM\Column(type: "integer", nullable: true)]
private ?int $niveauIndex;
#[ORM\Column(type: "datetime")]
private ?\DateTimeInterface $date_creation;
#[ORM\Column(type: "boolean")]
private ?bool $etat;
public function getId(): ?int
{
return $this->id;
}
public function getNiveau(): ?string
{
return $this->niveau;
}
public function setNiveau(?string $niveau): self
{
$this->niveau = $niveau;
return $this;
}
public function getIndex(): ?int
{
return $this->niveauIndex;
}
public function setniveauIndex(?int $niveauIndex): self
{
$this->niveauIndex = $niveauIndex;
return $this;
}
public function getDateCreation(): ?\DateTimeInterface
{
return $this->date_creation;
}
public function setDateCreation(?\DateTimeInterface $date_creation): self
{
$this->date_creation = $date_creation;
return $this;
}
public function getEtat(): ?bool
{
return $this->etat;
}
public function setEtat(?bool $etat): self
{
$this->etat = $etat;
return $this;
}
}