<?phpnamespace App\Entity;use App\Repository\GHVisitaPeriodicaRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Table(name: 'gh_visita_periodica')]#[ORM\Entity(repositoryClass: GHVisitaPeriodicaRepository::class)]class GHVisitaPeriodica{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'visitaPeriodica')] private ?ParEstado $estado = null; #[ORM\Column(length: 255, nullable: true)] private ?string $soporte = 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::TEXT, nullable: true)] private ?string $observacion = null; #[ORM\ManyToOne(inversedBy: 'visitaPeriodica')] private ?GHContratacion $contratacion = null; #[ORM\ManyToOne(inversedBy: 'visitaPeriodica')] private ?TerPersona $personaAutoriza = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $fecha = null; #[ORM\ManyToOne(inversedBy: 'visitaPeriodicaPersona')] private ?TerPersona $persona = null; #[ORM\ManyToOne(inversedBy: 'visitaPeridicaJefe')] private ?ParEstado $estadoJefe = null; #[ORM\ManyToOne(inversedBy: 'visitaPeriodicaNotificacion')] private ?TerPersona $colaboradorNotificacion = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $comentarioRevision = null; #[ORM\Column(nullable: true)] private ?array $evidenciasSoporte = null; public function getId(): ?int { return $this->id; } public function getEstado(): ?ParEstado { return $this->estado; } public function setEstado(?ParEstado $estado): static { $this->estado = $estado; return $this; } public function getSoporte(): ?string { return $this->soporte; } public function setSoporte(?string $soporte): static { $this->soporte = $soporte; 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 getObservacion(): ?string { return $this->observacion; } public function setObservacion(?string $observacion): static { $this->observacion = $observacion; return $this; } public function getContratacion(): ?GHContratacion { return $this->contratacion; } public function setContratacion(?GHContratacion $contratacion): static { $this->contratacion = $contratacion; return $this; } public function getPersonaAutoriza(): ?TerPersona { return $this->personaAutoriza; } public function setPersonaAutoriza(?TerPersona $personaAutoriza): static { $this->personaAutoriza = $personaAutoriza; return $this; } public function getFecha(): ?\DateTimeInterface { return $this->fecha; } public function setFecha(?\DateTimeInterface $fecha): static { $this->fecha = $fecha; return $this; } public function getPersona(): ?TerPersona { return $this->persona; } public function setPersona(?TerPersona $persona): static { $this->persona = $persona; return $this; } public function getEstadoJefe(): ?ParEstado { return $this->estadoJefe; } public function setEstadoJefe(?ParEstado $estadoJefe): static { $this->estadoJefe = $estadoJefe; return $this; } public function getColaboradorNotificacion(): ?TerPersona { return $this->colaboradorNotificacion; } public function setColaboradorNotificacion(?TerPersona $colaboradorNotificacion): static { $this->colaboradorNotificacion = $colaboradorNotificacion; return $this; } public function getComentarioRevision(): ?string { return $this->comentarioRevision; } public function setComentarioRevision(?string $comentarioRevision): static { $this->comentarioRevision = $comentarioRevision; return $this; } public function getEvidenciasSoporte(): ?array { return $this->evidenciasSoporte; } public function setEvidenciasSoporte(?array $evidenciasSoporte): static { $this->evidenciasSoporte = $evidenciasSoporte; return $this; }}