<?php
namespace App\Entity;
use App\Repository\ComCalificarCriticidadClienteRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: ComCalificarCriticidadClienteRepository::class)]
class ComCalificarCriticidadCliente
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE)]
private ?\DateTimeInterface $createAt = null;
#[ORM\Column(length: 255)]
private ?string $createUser = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE)]
private ?\DateTimeInterface $updateAt = null;
#[ORM\Column(length: 255)]
private ?string $updateUser = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $iso9001 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $bascIso28000 = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $oeaCtpatAeoProgSeguridad = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $uts = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $calificacion = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $inicioActividadComercial = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $calificacionActividadComercial = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $anoConstitucion = null;
#[ORM\Column(length: 10, nullable: true)]
private ?string $calificacionAnoConstitucion = null;
#[ORM\Column(length: 10, nullable: true)]
private ?string $calificaionExportaciones = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $calificacionTotal = null;
#[ORM\ManyToOne(inversedBy: 'comCalificarCriticidadCliente')]
private ?ComCircular170YPoderes $comCircular170YPoderes = null;
#[ORM\Column(length: 50, nullable: true)]
private ?string $criticidad = null;
public function getId(): ?int
{
return $this->id;
}
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 getIso9001(): ?string
{
return $this->iso9001;
}
public function setIso9001(?string $iso9001): static
{
$this->iso9001 = $iso9001;
return $this;
}
public function getBascIso28000(): ?string
{
return $this->bascIso28000;
}
public function setBascIso28000(?string $bascIso28000): static
{
$this->bascIso28000 = $bascIso28000;
return $this;
}
public function getOeaCtpatAeoProgSeguridad(): ?string
{
return $this->oeaCtpatAeoProgSeguridad;
}
public function setOeaCtpatAeoProgSeguridad(?string $oeaCtpatAeoProgSeguridad): static
{
$this->oeaCtpatAeoProgSeguridad = $oeaCtpatAeoProgSeguridad;
return $this;
}
public function getUts(): ?string
{
return $this->uts;
}
public function setUts(?string $uts): static
{
$this->uts = $uts;
return $this;
}
public function getCalificacion(): ?string
{
return $this->calificacion;
}
public function setCalificacion(?string $calificacion): static
{
$this->calificacion = $calificacion;
return $this;
}
public function getInicioActividadComercial(): ?\DateTimeInterface
{
return $this->inicioActividadComercial;
}
public function setInicioActividadComercial(?\DateTimeInterface $inicioActividadComercial): static
{
$this->inicioActividadComercial = $inicioActividadComercial;
return $this;
}
public function getCalificacionActividadComercial(): ?string
{
return $this->calificacionActividadComercial;
}
public function setCalificacionActividadComercial(?string $calificacionActividadComercial): static
{
$this->calificacionActividadComercial = $calificacionActividadComercial;
return $this;
}
public function getAnoConstitucion(): ?\DateTimeInterface
{
return $this->anoConstitucion;
}
public function setAnoConstitucion(?\DateTimeInterface $anoConstitucion): static
{
$this->anoConstitucion = $anoConstitucion;
return $this;
}
public function getCalificacionAnoConstitucion(): ?string
{
return $this->calificacionAnoConstitucion;
}
public function setCalificacionAnoConstitucion(?string $calificacionAnoConstitucion): static
{
$this->calificacionAnoConstitucion = $calificacionAnoConstitucion;
return $this;
}
public function getCalificaionExportaciones(): ?string
{
return $this->calificaionExportaciones;
}
public function setCalificaionExportaciones(?string $calificaionExportaciones): static
{
$this->calificaionExportaciones = $calificaionExportaciones;
return $this;
}
public function getCalificacionTotal(): ?string
{
return $this->calificacionTotal;
}
public function setCalificacionTotal(?string $calificacionTotal): static
{
$this->calificacionTotal = $calificacionTotal;
return $this;
}
public function getComCircular170YPoderes(): ?ComCircular170YPoderes
{
return $this->comCircular170YPoderes;
}
public function setComCircular170YPoderes(?ComCircular170YPoderes $comCircular170YPoderes): static
{
$this->comCircular170YPoderes = $comCircular170YPoderes;
return $this;
}
public function getCriticidad(): ?string
{
return $this->criticidad;
}
public function setCriticidad(?string $criticidad): static
{
$this->criticidad = $criticidad;
return $this;
}
}