src/Entity/Diplome.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DiplomeRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassDiplomeRepository::class)]
  7. class Diplome
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $niveau null;
  15.     #[ORM\Column(length255)]
  16.     private ?string $diplome null;
  17.     #[ORM\ManyToOne(inversedBy'diplomes')]
  18.     private ?Pemploye $Id_employe null;
  19.     #[ORM\Column]
  20.     private ?int $Desactiver null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $Ecole null;
  23.     #[ORM\Column(length255 nullabletrue)]
  24.     private ?string $Description null;
  25.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  26.     private ?\DateTimeInterface $dateObtention null;
  27.     public function getId(): ?int
  28.     {
  29.         return $this->id;
  30.     }
  31.     public function getNiveau(): ?string
  32.     {
  33.         return $this->niveau;
  34.     }
  35.     public function setNiveau(string $niveau): self
  36.     {
  37.         $this->niveau $niveau;
  38.         return $this;
  39.     }
  40.     public function getDiplome(): ?string
  41.     {
  42.         return $this->diplome;
  43.     }
  44.     public function setDiplome(string $diplome): self
  45.     {
  46.         $this->diplome $diplome;
  47.         return $this;
  48.     }
  49.     public function getIdEmploye(): ?Pemploye
  50.     {
  51.         return $this->Id_employe;
  52.     }
  53.     public function setIdEmploye(?Pemploye $Id_employe): self
  54.     {
  55.         $this->Id_employe $Id_employe;
  56.         return $this;
  57.     }
  58.     public function getDesactiver(): ?int
  59.     {
  60.         return $this->Desactiver;
  61.     }
  62.     public function setDesactiver(int $Desactiver): self
  63.     {
  64.         $this->Desactiver $Desactiver;
  65.         return $this;
  66.     }
  67.     public function getEcole(): ?string 
  68.     {
  69.         return $this->Ecole;
  70.         
  71.     }
  72.     public function setEcole(?string $Ecole): self
  73.     {
  74.         $this->Ecole $Ecole;
  75.         return $this;
  76.     }
  77.     public function getDescription(): ?string
  78.     {
  79.         return $this->Description;
  80.     }
  81.     public function setDescription(string $Description): self
  82.     {
  83.         $this->Description $Description;
  84.         return $this;
  85.     }
  86.     public function getDateObtention(): ?\DateTimeInterface
  87.     {
  88.         return $this->dateObtention;
  89.     }
  90.     public function setDateObtention(?\DateTimeInterface $dateObtention): static
  91.     {
  92.         $this->dateObtention $dateObtention;
  93.         return $this;
  94.     }
  95. }