src/Entity/Adherent/MagasinEquipe.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Adherent;
  3. use App\Repository\Adherent\MagasinEquipeRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassMagasinEquipeRepository::class)]
  8. class MagasinEquipe
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column(type'integer')]
  13.     private $id;
  14.     #[ORM\Column(type'text'nullabletrue)]
  15.     private $presentation;
  16.     #[ORM\Column(type'text'nullabletrue)]
  17.     private $presentationNl;
  18.     #[ORM\Column(type'text'nullabletrue)]
  19.     private $verbatim;
  20.     #[ORM\Column(type'text'nullabletrue)]
  21.     private $verbatimNl;
  22.     #[ORM\Column(type'string'length255nullabletrue)]
  23.     private $signature;
  24.     #[ORM\Column(type'string'length255nullabletrue)]
  25.     private $signatureNl;
  26.     #[ORM\OneToOne(targetEntityMagasin::class, inversedBy'magasinEquipe')]
  27.     #[ORM\JoinColumn(name'magasin'referencedColumnName'k_adherent')]
  28.     private $magasin;
  29.     #[ORM\Column(type'string'length255nullabletrue)]
  30.     private $photoEquipe;
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getPresentation(): ?string
  36.     {
  37.         return $this->presentation;
  38.     }
  39.     public function setPresentation(string $presentation): self
  40.     {
  41.         $this->presentation $presentation;
  42.         return $this;
  43.     }
  44.     public function getVerbatim(): ?string
  45.     {
  46.         return $this->verbatim;
  47.     }
  48.     public function setVerbatim(?string $verbatim): self
  49.     {
  50.         $this->verbatim $verbatim;
  51.         return $this;
  52.     }
  53.     public function getSignature(): ?string
  54.     {
  55.         return $this->signature;
  56.     }
  57.     public function setSignature(?string $signature): self
  58.     {
  59.         $this->signature $signature;
  60.         return $this;
  61.     }
  62.     /**
  63.      * @return mixed
  64.      */
  65.     public function getMagasin()
  66.     {
  67.         return $this->magasin;
  68.     }
  69.     public function setMagasin(mixed $magasin): void
  70.     {
  71.         $this->magasin $magasin;
  72.     }
  73.     /**
  74.      * @return mixed
  75.      */
  76.     public function getPhotoEquipe()
  77.     {
  78.         return $this->photoEquipe;
  79.     }
  80.     public function setPhotoEquipe(mixed $photoEquipe): void
  81.     {
  82.         $this->photoEquipe $photoEquipe;
  83.     }
  84.     /**
  85.      * @return mixed
  86.      */
  87.     public function getPresentationNl()
  88.     {
  89.         return $this->presentationNl;
  90.     }
  91.     public function setPresentationNl(mixed $presentationNl): void
  92.     {
  93.         $this->presentationNl $presentationNl;
  94.     }
  95.     /**
  96.      * @return mixed
  97.      */
  98.     public function getVerbatimNl()
  99.     {
  100.         return $this->verbatimNl;
  101.     }
  102.     public function setVerbatimNl(mixed $verbatimNl): void
  103.     {
  104.         $this->verbatimNl $verbatimNl;
  105.     }
  106.     /**
  107.      * @return mixed
  108.      */
  109.     public function getSignatureNl()
  110.     {
  111.         return $this->signatureNl;
  112.     }
  113.     public function setSignatureNl(mixed $signatureNl): void
  114.     {
  115.         $this->signatureNl $signatureNl;
  116.     }
  117. }