<?phpnamespace App\Entity;use App\Repository\EnqueteEntrepriseResponseLibreRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=EnqueteEntrepriseResponseLibreRepository::class) */class EnqueteEntrepriseResponseLibre{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="text", nullable=true) */ private $communication; /** * @ORM\Column(type="text", nullable=true) */ private $delais; /** * @ORM\Column(type="text", nullable=true) */ private $retourSalarier; /** * @ORM\Column(type="text", nullable=true) */ private $retourClientSurSalarier; /** * @ORM\ManyToOne(targetEntity=EnqueteEntreprise::class, inversedBy="enqueteEntrepriseResponseLibre") * @ORM\JoinColumn(nullable=false) */ private $enqueteEntreprise; public function getId(): ?int { return $this->id; } public function getCommunication(): ?string { return $this->communication; } public function setCommunication(?string $communication): self { $this->communication = $communication; return $this; } public function getDelais(): ?string { return $this->delais; } public function setDelais(?string $delais): self { $this->delais = $delais; return $this; } public function getRetourSalarier(): ?string { return $this->retourSalarier; } public function setRetourSalarier(?string $retourSalarier): self { $this->retourSalarier = $retourSalarier; return $this; } public function getRetourClientSurSalarier(): ?string { return $this->retourClientSurSalarier; } public function setRetourClientSurSalarier(?string $retourClientSurSalarier): self { $this->retourClientSurSalarier = $retourClientSurSalarier; return $this; } public function getEnqueteEntreprise(): ?EnqueteEntreprise { return $this->enqueteEntreprise; } public function setEnqueteEntreprise(?EnqueteEntreprise $enqueteEntreprise): self { $this->enqueteEntreprise = $enqueteEntreprise; return $this; }}