src/Entity/DossierType.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use JMS\Serializer\Annotation as Serializer;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Table(name="walkinn_dossier_type")
  9.  * @ORM\Entity(repositoryClass="App\Repository\DossierTypeRepository")
  10.  * @Serializer\ExclusionPolicy("all")
  11.  */
  12. class DossierType
  13. {
  14.     use \App\Traits\Timestampable;
  15.     use \App\Traits\Blameable;
  16.     /**
  17.      * @ORM\Id()
  18.      * @ORM\GeneratedValue()
  19.      * @ORM\Column(type="integer")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $libelle;
  26.     /**
  27.      * @ORM\Column(type="boolean", nullable=true)
  28.      */
  29.     private $actif 1;
  30.     /**
  31.      * @ORM\OneToMany(targetEntity="App\Entity\Dossier", mappedBy="dossierType")
  32.      */
  33.     private $dossiers;
  34.     /**
  35.      * @ORM\Column(type="boolean", nullable=true)
  36.      */
  37.     private $isTauxDeRemplissage;
  38.     public function __construct()
  39.     {
  40.         $this->dossiers = new ArrayCollection();
  41.     }
  42.     public function __toString()
  43.     {
  44.         return $this->libelle;
  45.     }
  46.     public function getId(): ?int
  47.     {
  48.         return $this->id;
  49.     }
  50.     public function getLibelle(): ?string
  51.     {
  52.         return $this->libelle;
  53.     }
  54.     public function setLibelle(?string $libelle): self
  55.     {
  56.         $this->libelle $libelle;
  57.         return $this;
  58.     }
  59.     public function getActif(): ?bool
  60.     {
  61.         return $this->actif;
  62.     }
  63.     public function setActif(?bool $actif): self
  64.     {
  65.         $this->actif $actif;
  66.         return $this;
  67.     }
  68.     /**
  69.      * @return Collection|Dossier[]
  70.      */
  71.     public function getDossiers(): Collection
  72.     {
  73.         return $this->dossiers;
  74.     }
  75.     public function addDossier(Dossier $dossier): self
  76.     {
  77.         if (!$this->dossiers->contains($dossier)) {
  78.             $this->dossiers[] = $dossier;
  79.             $dossier->setDossierType($this);
  80.         }
  81.         return $this;
  82.     }
  83.     public function removeDossier(Dossier $dossier): self
  84.     {
  85.         if ($this->dossiers->contains($dossier)) {
  86.             $this->dossiers->removeElement($dossier);
  87.             // set the owning side to null (unless already changed)
  88.             if ($dossier->getDossierType() === $this) {
  89.                 $dossier->setDossierType(null);
  90.             }
  91.         }
  92.         return $this;
  93.     }
  94.     public function getIsTauxDeRemplissage(): ?bool
  95.     {
  96.         return $this->isTauxDeRemplissage;
  97.     }
  98.     public function setIsTauxDeRemplissage(?bool $isTauxDeRemplissage): self
  99.     {
  100.         $this->isTauxDeRemplissage $isTauxDeRemplissage;
  101.         return $this;
  102.     }
  103. }