src/Entity/DossierEtat.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_etat")
  9.  * @ORM\Entity(repositoryClass="App\Repository\DossierEtatRepository")
  10.  * @Serializer\ExclusionPolicy("all")
  11.  */
  12. class DossierEtat
  13. {
  14.     use \App\Traits\Timestampable;
  15.     use \App\Traits\Blameable;
  16.     
  17.     /**
  18.      * @ORM\Id()
  19.      * @ORM\GeneratedValue()
  20.      * @ORM\Column(type="integer")
  21.      */
  22.     private $id;
  23.     /**
  24.      * @ORM\Column(type="string", length=255, nullable=true)
  25.      */
  26.     private $libelle;
  27.     /**
  28.      * @ORM\Column(type="string", length=255, nullable=true)
  29.      */
  30.     private $icone;
  31.     /**
  32.      *
  33.      * @ORM\Column(name="color", type="string", length=255, nullable=true)
  34.      */
  35.     private $color
  36.     /**
  37.      * @ORM\Column(type="boolean", nullable=true)
  38.      */
  39.     private $actif 1;
  40.     /**
  41.      * @ORM\OneToMany(targetEntity="App\Entity\Dossier", mappedBy="dossierEtat")
  42.      */
  43.     private $dossiers;
  44.     /**
  45.      * @ORM\Column(type="boolean", nullable=true)
  46.      */
  47.     private $isValide;
  48.     public function __construct()
  49.     {
  50.         $this->dossiers = new ArrayCollection();
  51.     }
  52.     public function __toString()
  53.     {
  54.         return $this->libelle;
  55.     }
  56.     public function getId(): ?int
  57.     {
  58.         return $this->id;
  59.     }
  60.     public function getLibelle(): ?string
  61.     {
  62.         return $this->libelle;
  63.     }
  64.     public function setLibelle(?string $libelle): self
  65.     {
  66.         $this->libelle $libelle;
  67.         return $this;
  68.     }
  69.     public function getIcone(): ?string
  70.     {
  71.         return $this->icone;
  72.     }
  73.     public function setIcone(?string $icone): self
  74.     {
  75.         $this->icone $icone;
  76.         return $this;
  77.     }
  78.     public function getActif(): ?bool
  79.     {
  80.         return $this->actif;
  81.     }
  82.     public function setActif(?bool $actif): self
  83.     {
  84.         $this->actif $actif;
  85.         return $this;
  86.     }
  87.     /**
  88.      * @return Collection|Dossier[]
  89.      */
  90.     public function getDossiers(): Collection
  91.     {
  92.         return $this->dossiers;
  93.     }
  94.     public function addDossier(Dossier $dossier): self
  95.     {
  96.         if (!$this->dossiers->contains($dossier)) {
  97.             $this->dossiers[] = $dossier;
  98.             $dossier->setDossierEtat($this);
  99.         }
  100.         return $this;
  101.     }
  102.     public function removeDossier(Dossier $dossier): self
  103.     {
  104.         if ($this->dossiers->contains($dossier)) {
  105.             $this->dossiers->removeElement($dossier);
  106.             // set the owning side to null (unless already changed)
  107.             if ($dossier->getDossierEtat() === $this) {
  108.                 $dossier->setDossierEtat(null);
  109.             }
  110.         }
  111.         return $this;
  112.     }
  113.     public function getColor(): ?string
  114.     {
  115.         return $this->color;
  116.     }
  117.     public function setColor(?string $color): self
  118.     {
  119.         $this->color $color;
  120.         return $this;
  121.     }
  122.     public function getIsValide(): ?bool
  123.     {
  124.         return $this->isValide;
  125.     }
  126.     public function setIsValide(?bool $isValide): self
  127.     {
  128.         $this->isValide $isValide;
  129.         return $this;
  130.     }
  131. }