<?phpnamespace App\Entity;use App\Repository\NonSurgicalHairRestorationRequestRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=NonSurgicalHairRestorationRequestRepository::class) */class NonSurgicalHairRestorationRequest{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=255) */ private $gender; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $clinicName; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $email; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $name; /** * @ORM\Column(type="date", nullable=true) */ private $createdAt; public function getId(): ?int { return $this->id; } public function getGender(): ?string { return $this->gender; } public function setGender(string $gender): self { $this->gender = $gender; return $this; } public function getClinicName(): ?string { return $this->clinicName; } public function setClinicName(?string $clinicName): self { $this->clinicName = $clinicName; return $this; } public function getEmail(): ?string { return $this->email; } public function setEmail(?string $email): self { $this->email = $email; return $this; } public function getName(): ?string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function getCreatedAt(): ?\DateTimeInterface { return $this->createdAt; } public function setCreatedAt(?\DateTimeInterface $createdAt): self { $this->createdAt = $createdAt; return $this; }}