src/Entity/DemandeFormation.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DemandeFormationRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassDemandeFormationRepository::class)]
  9. class DemandeFormation
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column()]
  14.     private ?int $id null;
  15.     #[ORM\Column(length150nullabletrue)]
  16.     private ?string $typeFormation null;
  17.     #[ORM\Column(nullabletrue)]
  18.     private ?int $etatTraitement null;
  19.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  20.     private ?\DateTimeInterface $dateTraitement null;
  21.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  22.     private ?\DateTimeInterface $dateDemande null;
  23.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  24.     private ?\DateTimeInterface $createdAt null;
  25.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  26.     private ?\DateTimeInterface $updatedAt null;
  27.     #[ORM\Column(length50nullabletrue)]
  28.     private ?string $identElv null;
  29.     #[ORM\Column(length100nullabletrue)]
  30.     private ?string $nprElvLt null;
  31.     #[ORM\Column(length100nullabletrue)]
  32.     private ?string $nprElvLi null;
  33.     #[ORM\Column(nullabletrue)]
  34.     private ?int $cin null;
  35.     #[ORM\Column(length150nullabletrue)]
  36.     private ?string $niveauEducation null;
  37.     #[ORM\Column(length255nullabletrue)]
  38.     private ?string $adresse null;
  39.     #[ORM\Column(length50nullabletrue)]
  40.     private ?string $numTel null;
  41.     #[ORM\Column(length150nullabletrue)]
  42.     private ?string $email null;
  43.     #[ORM\OneToMany(mappedBy'demandeFormation'targetEntityDocDiplome::class)]
  44.     private Collection $docDiplomes;
  45.     #[ORM\Column(length255nullabletrue)]
  46.     private ?string $motif null;
  47.     #[ORM\ManyToOne(inversedBy'demandeFormations')]
  48.     private ?DicGouvernorat $gouvernorat null;
  49.     public function __construct()
  50.     {
  51.         $this->docDiplomes = new ArrayCollection();
  52.     }
  53.     public function getId(): ?int
  54.     {
  55.         return $this->id;
  56.     }
  57.     public function getTypeFormation(): ?string
  58.     {
  59.         return $this->typeFormation;
  60.     }
  61.     public function setTypeFormation(?string $typeFormation): self
  62.     {
  63.         $this->typeFormation $typeFormation;
  64.         return $this;
  65.     }
  66.     public function getEtatTraitement(): ?int
  67.     {
  68.         return $this->etatTraitement;
  69.     }
  70.     public function setEtatTraitement(?int $etatTraitement): self
  71.     {
  72.         $this->etatTraitement $etatTraitement;
  73.         return $this;
  74.     }
  75.     public function getDateTraitement(): ?\DateTimeInterface
  76.     {
  77.         return $this->dateTraitement;
  78.     }
  79.     public function setDateTraitement(?\DateTimeInterface $dateTraitement): self
  80.     {
  81.         $this->dateTraitement $dateTraitement;
  82.         return $this;
  83.     }
  84.     public function getDateDemande(): ?\DateTimeInterface
  85.     {
  86.         return $this->dateDemande;
  87.     }
  88.     public function setDateDemande(?\DateTimeInterface $dateDemande): self
  89.     {
  90.         $this->dateDemande $dateDemande;
  91.         return $this;
  92.     }
  93.     public function getCreatedAt(): ?\DateTimeInterface
  94.     {
  95.         return $this->createdAt;
  96.     }
  97.     public function setCreatedAt(\DateTimeInterface $createdAt): self
  98.     {
  99.         $this->createdAt $createdAt;
  100.         return $this;
  101.     }
  102.     public function getUpdatedAt(): ?\DateTimeInterface
  103.     {
  104.         return $this->updatedAt;
  105.     }
  106.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  107.     {
  108.         $this->updatedAt $updatedAt;
  109.         return $this;
  110.     }
  111.     public function getIdentElv(): ?string
  112.     {
  113.         return $this->identElv;
  114.     }
  115.     public function setIdentElv(?string $identElv): self
  116.     {
  117.         $this->identElv $identElv;
  118.         return $this;
  119.     }
  120.   public function getNprElvLt(): ?string
  121.     {
  122.         return $this->nprElvLt;
  123.     }
  124.     public function setNprElvLt(?string $nprElvLt): self
  125.     {
  126.         $this->nprElvLt $nprElvLt;
  127.         return $this;
  128.     }
  129.     public function getNprElvLi(): ?string
  130.     {
  131.         return $this->nprElvLi;
  132.     }
  133.     public function setNprElvLi(?string $nprElvLi): self
  134.     {
  135.         $this->nprElvLi $nprElvLi;
  136.         return $this;
  137.     }
  138.     public function getCin(): ?int
  139.     {
  140.         return $this->cin;
  141.     }
  142.     public function setCin(?int $cin): self
  143.     {
  144.         $this->cin $cin;
  145.         return $this;
  146.     }
  147.     public function getNiveauEducation(): ?string
  148.     {
  149.         return $this->niveauEducation;
  150.     }
  151.     public function setNiveauEducation(?string $niveauEducation): self
  152.     {
  153.         $this->niveauEducation $niveauEducation;
  154.         return $this;
  155.     }
  156.     public function getAdresse(): ?string
  157.     {
  158.         return $this->adresse;
  159.     }
  160.     public function setAdresse(?string $adresse): self
  161.     {
  162.         $this->adresse $adresse;
  163.         return $this;
  164.     }
  165.     public function getNumTel(): ?string
  166.     {
  167.         return $this->numTel;
  168.     }
  169.     public function setNumTel(?string $numTel): self
  170.     {
  171.         $this->numTel $numTel;
  172.         return $this;
  173.     }
  174.     public function getEmail(): ?string
  175.     {
  176.         return $this->email;
  177.     }
  178.     public function setEmail(?string $email): self
  179.     {
  180.         $this->email $email;
  181.         return $this;
  182.     }
  183.     /**
  184.      * @return Collection<int, DocDiplome>
  185.      */
  186.     public function getDocDiplomes(): Collection
  187.     {
  188.         return $this->docDiplomes;
  189.     }
  190.     public function addDocDiplome(DocDiplome $docDiplome): self
  191.     {
  192.         if (!$this->docDiplomes->contains($docDiplome)) {
  193.             $this->docDiplomes[] = $docDiplome;
  194.             $docDiplome->setDemandeFormation($this);
  195.         }
  196.         return $this;
  197.     }
  198.     public function removeDocDiplome(DocDiplome $docDiplome): self
  199.     {
  200.         if ($this->docDiplomes->removeElement($docDiplome)) {
  201.             // set the owning side to null (unless already changed)
  202.             if ($docDiplome->getDemandeFormation() === $this) {
  203.                 $docDiplome->setDemandeFormation(null);
  204.             }
  205.         }
  206.         return $this;
  207.     }
  208.     public function getMotif(): ?string
  209.     {
  210.         return $this->motif;
  211.     }
  212.     public function setMotif(?string $motif): self
  213.     {
  214.         $this->motif $motif;
  215.         return $this;
  216.     }
  217.     public function getGouvernorat(): ?DicGouvernorat
  218.     {
  219.         return $this->gouvernorat;
  220.     }
  221.     public function setGouvernorat(?DicGouvernorat $gouvernorat): self
  222.     {
  223.         $this->gouvernorat $gouvernorat;
  224.         return $this;
  225.     }
  226. }