<?phpnamespace App\Entity;use App\Repository\ComGestionMantenimientoRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ComGestionMantenimientoRepository::class)]class ComGestionMantenimiento{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $fechaGestion = null; #[ORM\Column(length: 255, nullable: true)] private ?string $detalleGestion = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $fechaSeguimiento = null; #[ORM\Column(length: 255, nullable: true)] private ?string $detalleSeguimiento = null; #[ORM\ManyToOne(inversedBy: 'comGestionMantenimientos')] private ?TerEmpresaCliente $terEmpresaCliente = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $createAt = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $updateAt = null; #[ORM\Column(length: 255, nullable: true)] private ?string $createUser = null; #[ORM\Column(length: 255, nullable: true)] private ?string $updateUser = null; public function getId(): ?int { return $this->id; } public function getFechaGestion(): ?\DateTimeInterface { return $this->fechaGestion; } public function setFechaGestion(?\DateTimeInterface $fechaGestion): static { $this->fechaGestion = $fechaGestion; return $this; } public function getDetalleGestion(): ?string { return $this->detalleGestion; } public function setDetalleGestion(?string $detalleGestion): static { $this->detalleGestion = $detalleGestion; return $this; } public function getFechaSeguimiento(): ?\DateTimeInterface { return $this->fechaSeguimiento; } public function setFechaSeguimiento(?\DateTimeInterface $fechaSeguimiento): static { $this->fechaSeguimiento = $fechaSeguimiento; return $this; } public function getDetalleSeguimiento(): ?string { return $this->detalleSeguimiento; } public function setDetalleSeguimiento(?string $detalleSeguimiento): static { $this->detalleSeguimiento = $detalleSeguimiento; return $this; } public function getTerEmpresaCliente(): ?TerEmpresaCliente { return $this->terEmpresaCliente; } public function setTerEmpresaCliente(?TerEmpresaCliente $terEmpresaCliente): static { $this->terEmpresaCliente = $terEmpresaCliente; return $this; } public function getCreateAt(): ?\DateTimeInterface { return $this->createAt; } public function setCreateAt(?\DateTimeInterface $createAt): static { $this->createAt = $createAt; return $this; } public function getUpdateAt(): ?\DateTimeInterface { return $this->updateAt; } public function setUpdateAt(?\DateTimeInterface $updateAt): static { $this->updateAt = $updateAt; return $this; } public function getCreateUser(): ?string { return $this->createUser; } public function setCreateUser(?string $createUser): static { $this->createUser = $createUser; return $this; } public function getUpdateUser(): ?string { return $this->updateUser; } public function setUpdateUser(?string $updateUser): static { $this->updateUser = $updateUser; return $this; }}