<?phpnamespace App\Entity;use App\Repository\ComPersonasEncargadasDeOperacionRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ComPersonasEncargadasDeOperacionRepository::class)]class ComPersonasEncargadasDeOperacion{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(length: 255, nullable: true)] private ?string $nombresApellidos = null; #[ORM\Column(length: 255, nullable: true)] private ?string $numeroIdentificacion = null; #[ORM\Column(length: 255, nullable: true)] private ?string $telefono = null; #[ORM\Column(length: 255, nullable: true)] private ?string $correoElectronico = null; #[ORM\ManyToOne(inversedBy: 'comPersonasEncargadasDeOperacions')] private ?ParEstado $estadoSeccion = null; #[ORM\ManyToOne(inversedBy: 'comPersonasEncargadasDeOperacions')] private ?ComCircular170YPoderes $comCircularC170 = 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 getNombresApellidos(): ?string { return $this->nombresApellidos; } public function setNombresApellidos(?string $nombresApellidos): static { $this->nombresApellidos = $nombresApellidos; return $this; } public function getNumeroIdentificacion(): ?string { return $this->numeroIdentificacion; } public function setNumeroIdentificacion(?string $numeroIdentificacion): static { $this->numeroIdentificacion = $numeroIdentificacion; return $this; } public function getTelefono(): ?string { return $this->telefono; } public function setTelefono(?string $telefono): static { $this->telefono = $telefono; return $this; } public function getCorreoElectronico(): ?string { return $this->correoElectronico; } public function setCorreoElectronico(?string $correoElectronico): static { $this->correoElectronico = $correoElectronico; return $this; } public function getEstadoSeccion(): ?ParEstado { return $this->estadoSeccion; } public function setEstadoSeccion(?ParEstado $estadoSeccion): static { $this->estadoSeccion = $estadoSeccion; return $this; } public function getComCircularC170(): ?ComCircular170YPoderes { return $this->comCircularC170; } public function setComCircularC170(?ComCircular170YPoderes $comCircularC170): static { $this->comCircularC170 = $comCircularC170; 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; }}