<?phpnamespace App\Entity;use App\Repository\JurRespuestaProcesoRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: JurRespuestaProcesoRepository::class)]class JurRespuestaProceso { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'respuestaProceso')] private ?JurProceso $proceso = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $descripcion = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $fechaVencimiento = null; #[ORM\Column(length: 255)] private ?string $archivoEvidencia = null; #[ORM\ManyToOne(inversedBy: 'respuestaProceso')] private ?ParEstado $estado = 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\Column(type: Types::DATE_MUTABLE)] private ?\DateTimeInterface $fechaRespuesta = null; #[ORM\Column(type: Types::DECIMAL, precision: 11, scale: 2, nullable: true)] private ?string $montoPagado = null; #[ORM\Column(length: 50)] private ?string $allanamiento = null; public function getId(): ?int { return $this->id; } public function getProceso(): ?JurProceso { return $this->proceso; } public function setProceso(?JurProceso $proceso): static { $this->proceso = $proceso; return $this; } public function getDescripcion(): ?string { return $this->descripcion; } public function setDescripcion(string $descripcion): static { $this->descripcion = $descripcion; return $this; } public function getFechaVencimiento(): ?\DateTimeInterface { return $this->fechaVencimiento; } public function setFechaVencimiento(?\DateTimeInterface $fechaVencimiento): static { $this->fechaVencimiento = $fechaVencimiento; return $this; } public function getArchivoEvidencia(): ?string { return $this->archivoEvidencia; } public function setArchivoEvidencia(string $archivoEvidencia): static { $this->archivoEvidencia = $archivoEvidencia; return $this; } public function getEstado(): ?ParEstado { return $this->estado; } public function setEstado(?ParEstado $estado): static { $this->estado = $estado; 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 getFechaRespuesta(): ?\DateTimeInterface { return $this->fechaRespuesta; } public function setFechaRespuesta(\DateTimeInterface $fechaRespuesta): static { $this->fechaRespuesta = $fechaRespuesta; return $this; } public function getMontoPagado(): ?string { return $this->montoPagado; } public function setMontoPagado(string $monto): static { $this->montoPagado = $monto; return $this; } public function getAllanamiento(): ?string { return $this->allanamiento; } public function setAllanamiento(string $allanamiento): static { $this->allanamiento = $allanamiento; return $this; }}