src/Entity/EnqueteEntrepriseResponseLibre.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\EnqueteEntrepriseResponseLibreRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=EnqueteEntrepriseResponseLibreRepository::class)
  7.  */
  8. class EnqueteEntrepriseResponseLibre
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="text", nullable=true)
  18.      */
  19.     private $communication;
  20.     /**
  21.      * @ORM\Column(type="text", nullable=true)
  22.      */
  23.     private $delais;
  24.     /**
  25.      * @ORM\Column(type="text", nullable=true)
  26.      */
  27.     private $retourSalarier;
  28.     /**
  29.      * @ORM\Column(type="text", nullable=true)
  30.      */
  31.     private $retourClientSurSalarier;
  32.     /**
  33.      * @ORM\ManyToOne(targetEntity=EnqueteEntreprise::class, inversedBy="enqueteEntrepriseResponseLibre")
  34.      * @ORM\JoinColumn(nullable=false)
  35.      */
  36.     private $enqueteEntreprise;
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getCommunication(): ?string
  42.     {
  43.         return $this->communication;
  44.     }
  45.     public function setCommunication(?string $communication): self
  46.     {
  47.         $this->communication $communication;
  48.         return $this;
  49.     }
  50.     public function getDelais(): ?string
  51.     {
  52.         return $this->delais;
  53.     }
  54.     public function setDelais(?string $delais): self
  55.     {
  56.         $this->delais $delais;
  57.         return $this;
  58.     }
  59.     public function getRetourSalarier(): ?string
  60.     {
  61.         return $this->retourSalarier;
  62.     }
  63.     public function setRetourSalarier(?string $retourSalarier): self
  64.     {
  65.         $this->retourSalarier $retourSalarier;
  66.         return $this;
  67.     }
  68.     public function getRetourClientSurSalarier(): ?string
  69.     {
  70.         return $this->retourClientSurSalarier;
  71.     }
  72.     public function setRetourClientSurSalarier(?string $retourClientSurSalarier): self
  73.     {
  74.         $this->retourClientSurSalarier $retourClientSurSalarier;
  75.         return $this;
  76.     }
  77.     public function getEnqueteEntreprise(): ?EnqueteEntreprise
  78.     {
  79.         return $this->enqueteEntreprise;
  80.     }
  81.     public function setEnqueteEntreprise(?EnqueteEntreprise $enqueteEntreprise): self
  82.     {
  83.         $this->enqueteEntreprise $enqueteEntreprise;
  84.         return $this;
  85.     }
  86. }