<?phpnamespace App\Entity;use App\Repository\SegSolicitudCCTVReporteRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: SegSolicitudCCTVReporteRepository::class)]class SegSolicitudCCTVReporte{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'solicitudCCTVReportes')] private ?SegSolicitudCCTV $solicitudCCTV = null; #[ORM\Column(length: 255)] private ?string $reporte = null; #[ORM\Column(type: Types::TEXT, nullable: true)] private ?string $descripcion = null; #[ORM\Column(length: 255, nullable: true)] private ?string $link = 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; public function getId(): ?int { return $this->id; } public function getSolicitudCCTV(): ?SegSolicitudCCTV { return $this->solicitudCCTV; } public function setSolicitudCCTV(?SegSolicitudCCTV $solicitudCCTV): static { $this->solicitudCCTV = $solicitudCCTV; return $this; } public function getReporte(): ?string { return $this->reporte; } public function setReporte(string $reporte): static { $this->reporte = $reporte; return $this; } public function getDescripcion(): ?string { return $this->descripcion; } public function setDescripcion(?string $descripcion): static { $this->descripcion = $descripcion; return $this; } public function getLink(): ?string { return $this->link; } public function setLink(?string $link): static { $this->link = $link; 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; }}