<?phpnamespace App\Entity;use App\Repository\ComReferenciasComercialesRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ComReferenciasComercialesRepository::class)]class ComReferenciasComerciales{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(length: 255, nullable: true)] private ?string $empresa = null; #[ORM\Column(length: 255, nullable: true)] private ?string $numeroIdentificacion = null; #[ORM\Column(length: 255, nullable: true)] private ?string $direccion = null; #[ORM\ManyToOne(inversedBy: 'comReferenciasComerciales')] private ?ParEstado $estadoSeccion = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $createAt = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $updateAy = null; #[ORM\Column(length: 255, nullable: true)] private ?string $createUser = null; #[ORM\Column(length: 255, nullable: true)] private ?string $updateUser = null; #[ORM\ManyToOne(inversedBy: 'comReferenciasComerciales')] private ?ComCircular170YPoderes $comCircular170 = null; public function getId(): ?int { return $this->id; } public function getEmpresa(): ?string { return $this->empresa; } public function setEmpresa(?string $empresa): static { $this->empresa = $empresa; return $this; } public function getNumeroIdentificacion(): ?string { return $this->numeroIdentificacion; } public function setNumeroIdentificacion(?string $numeroIdentificacion): static { $this->numeroIdentificacion = $numeroIdentificacion; return $this; } public function getDireccion(): ?string { return $this->direccion; } public function setDireccion(?string $direccion): static { $this->direccion = $direccion; return $this; } public function getEstadoSeccion(): ?ParEstado { return $this->estadoSeccion; } public function setEstadoSeccion(?ParEstado $estadoSeccion): static { $this->estadoSeccion = $estadoSeccion; return $this; } public function getCreateAt(): ?\DateTimeInterface { return $this->createAt; } public function setCreateAt(?\DateTimeInterface $createAt): static { $this->createAt = $createAt; return $this; } public function getUpdateAy(): ?\DateTimeInterface { return $this->updateAy; } public function setUpdateAy(?\DateTimeInterface $updateAy): static { $this->updateAy = $updateAy; 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; } public function getComCircular170(): ?ComCircular170YPoderes { return $this->comCircular170; } public function setComCircular170(?ComCircular170YPoderes $comCircular170): static { $this->comCircular170 = $comCircular170; return $this; }}