src/Entity/FormSectionVisa.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FormSectionVisaRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Serializer\Annotation\MaxDepth;
  6. use Symfony\Component\Serializer\Annotation\Ignore;
  7. use Symfony\Component\Serializer\Annotation\Groups;
  8. /**
  9.  * @ORM\Entity(repositoryClass=FormSectionVisaRepository::class)
  10.  */
  11. class FormSectionVisa
  12. {
  13.     /**
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @ORM\ManyToOne(targetEntity=FormSection::class, inversedBy="visas")
  21.      * @MaxDepth(1)
  22.      */
  23.     private $section;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $entiteNom;
  28.     /**
  29.      * @ORM\Column(type="integer", nullable=true)
  30.      */
  31.     private $entiteId;
  32.     /**
  33.      * @ORM\Column(type="datetime", nullable=true)
  34.      */
  35.     private $date;
  36.     /**
  37.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="sectionVisas", fetch="EAGER")
  38.      * @MaxDepth(1)
  39.      */
  40.     private $user;
  41.     public function getId(): ?int
  42.     {
  43.         return $this->id;
  44.     }
  45.     public function getSection(): ?FormSection
  46.     {
  47.         return $this->section;
  48.     }
  49.     public function setSection(?FormSection $section): self
  50.     {
  51.         $this->section $section;
  52.         return $this;
  53.     }
  54.     public function getEntiteNom(): ?string
  55.     {
  56.         return $this->entiteNom;
  57.     }
  58.     public function setEntiteNom(?string $entiteNom): self
  59.     {
  60.         $this->entiteNom $entiteNom;
  61.         return $this;
  62.     }
  63.     public function getEntiteId(): ?int
  64.     {
  65.         return $this->entiteId;
  66.     }
  67.     public function setEntiteId(?int $entiteId): self
  68.     {
  69.         $this->entiteId $entiteId;
  70.         return $this;
  71.     }
  72.     public function getDate(): ?\DateTimeInterface
  73.     {
  74.         return $this->date;
  75.     }
  76.     public function setDate(\DateTimeInterface $date): self
  77.     {
  78.         $this->date $date;
  79.         return $this;
  80.     }
  81.     public function getUser(): ?User
  82.     {
  83.         return $this->user;
  84.     }
  85.     public function setUser(?User $user): self
  86.     {
  87.         $this->user $user;
  88.         return $this;
  89.     }
  90. }