<?phpnamespace App\Entity;use App\Repository\RFProrrogaSolicitudDocumentoRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Table(name: 'rf_prorroga_solicitud_documento')]#[ORM\Entity(repositoryClass: RFProrrogaSolicitudDocumentoRepository::class)]class RFProrrogaSolicitudDocumento{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'prorrogaSolicitudDocumento')] private ?RFSolicitudDocumento $solicitudDocumento = null; #[ORM\Column(type: Types::DATETIME_MUTABLE)] private ?\DateTimeInterface $fechaEntrega = null; #[ORM\Column(type: Types::TEXT)] private ?string $motivo = 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: 'solicitaProrrogaSolicitudDocumento')] private ?TerPersona $usuarioSolicita = null; public function getId(): ?int { return $this->id; } public function getSolicitudDocumento(): ?RFSolicitudDocumento { return $this->solicitudDocumento; } public function setSolicitudDocumento(?RFSolicitudDocumento $solicitudDocumento): static { $this->solicitudDocumento = $solicitudDocumento; return $this; } public function getFechaEntrega(): ?\DateTimeInterface { return $this->fechaEntrega; } public function setFechaEntrega(\DateTimeInterface $fechaEntrega): static { $this->fechaEntrega = $fechaEntrega; return $this; } public function getMotivo(): ?string { return $this->motivo; } public function setMotivo(string $motivo): static { $this->motivo = $motivo; return $this; } 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 getUsuarioSolicita(): ?TerPersona { return $this->usuarioSolicita; } public function setUsuarioSolicita(?TerPersona $usuarioSolicita): static { $this->usuarioSolicita = $usuarioSolicita; return $this; }}