<?phpnamespace App\Entity;use App\Repository\GHSolicitudDotacionEPPRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: GHSolicitudDotacionEPPRepository::class)]class GHSolicitudDotacionEPP{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $createAt = null; #[ORM\Column(length: 50)] private ?string $createUser = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $updateAt = null; #[ORM\Column(length: 50)] private ?string $updateUser = null; #[ORM\ManyToOne(inversedBy: 'solicitudDotacionEPP')] private ?GHSolicitudDotacion $solicitudDotacion = null; #[ORM\Column(length: 10)] private ?string $talla = null; #[ORM\ManyToOne(inversedBy: 'solicitudDotacionEPP')] private ?ParTipoDotacion $dotacion = null; public function getId(): ?int { return $this->id; } public function getCreateAt(): ?\DateTimeInterface { return $this->createAt; } public function setCreateAt(\DateTimeInterface $createAt): static { $this->createAt = $createAt; return $this; } public function getCreateUser(): ?string { return $this->createUser; } public function setCreateUser(string $createUser): static { $this->createUser = $createUser; return $this; } public function getUpdateAt(): ?\DateTimeInterface { return $this->updateAt; } public function setUpdateAt(\DateTimeInterface $updateAt): static { $this->updateAt = $updateAt; return $this; } public function getUpdateUser(): ?string { return $this->updateUser; } public function setUpdateUser(string $updateUser): static { $this->updateUser = $updateUser; return $this; } public function getSolicitudDotacion(): ?GHSolicitudDotacion { return $this->solicitudDotacion; } public function setSolicitudDotacion(?GHSolicitudDotacion $solicitudDotacion): static { $this->solicitudDotacion = $solicitudDotacion; return $this; } public function getTalla(): ?string { return $this->talla; } public function setTalla(string $talla): static { $this->talla = $talla; return $this; } public function getDotacion(): ?ParTipoDotacion { return $this->dotacion; } public function setDotacion(?ParTipoDotacion $dotacion): static { $this->dotacion = $dotacion; return $this; }}