src/Entity/ComDocumentosCliente.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComDocumentosClienteRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassComDocumentosClienteRepository::class)]
  7. class ComDocumentosCliente
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255nullablefalse)]
  14.     private ?string $tipoDocumento null;
  15.     #[ORM\Column(length255nullablefalse)]
  16.     private ?string $nombreDocumento null;
  17.     #[ORM\ManyToOne(inversedBy'documentosClienteGestionComercial')]
  18.     private ?ComGestionContactoComercial $documentosClienteGestionComercial null;
  19.     #[ORM\ManyToOne(inversedBy'comDocumentosCliente')]
  20.     private ?ComProspecto $comProspectoDocumentoCliente null;
  21.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  22.     private ?\DateTimeInterface $createAt null;
  23.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  24.     private ?\DateTimeInterface $updateAt null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $createUser null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $updateUser null;
  29.     #[ORM\ManyToOne(inversedBy'comDocumentosCliente')]
  30.     private ?TerEmpresaCliente $terEmpresaCliente null;
  31.     #[ORM\ManyToOne(inversedBy'comDocumentosClientes')]
  32.     private ?ComHojaVidaAsociado $comHojaVidaAsociado null;
  33.     public function getId(): ?int
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function getTipoDocumento(): ?string
  38.     {
  39.         return $this->tipoDocumento;
  40.     }
  41.     public function setTipoDocumento(?string $tipoDocumento): static
  42.     {
  43.         $this->tipoDocumento $tipoDocumento;
  44.         return $this;
  45.     }
  46.     public function getNombreDocumento(): ?string
  47.     {
  48.         return $this->nombreDocumento;
  49.     }
  50.     public function setNombreDocumento(string $nombreDocumento): static
  51.     {
  52.         $this->nombreDocumento $nombreDocumento;
  53.         return $this;
  54.     }
  55.     public function getDocumentosClienteGestionComercial(): ?ComGestionContactoComercial
  56.     {
  57.         return $this->documentosClienteGestionComercial;
  58.     }
  59.     public function setDocumentosClienteGestionComercial(?ComGestionContactoComercial $documentosClienteGestionComercial): static
  60.     {
  61.         $this->documentosClienteGestionComercial $documentosClienteGestionComercial;
  62.         return $this;
  63.     }
  64.     public function getComProspectoDocumentoCliente(): ?ComProspecto
  65.     {
  66.         return $this->comProspectoDocumentoCliente;
  67.     }
  68.     public function setComProspectoDocumentoCliente(?ComProspecto $comProspectoDocumentoCliente): static
  69.     {
  70.         $this->comProspectoDocumentoCliente $comProspectoDocumentoCliente;
  71.         return $this;
  72.     }
  73.     public function getCreateAt(): ?\DateTimeInterface
  74.     {
  75.         return $this->createAt;
  76.     }
  77.     public function setCreateAt(?\DateTimeInterface $createAt): static
  78.     {
  79.         $this->createAt $createAt;
  80.         return $this;
  81.     }
  82.     public function getUpdateAt(): ?\DateTimeInterface
  83.     {
  84.         return $this->updateAt;
  85.     }
  86.     public function setUpdateAt(\DateTimeInterface $updateAt): static
  87.     {
  88.         $this->updateAt $updateAt;
  89.         return $this;
  90.     }
  91.     public function getCreateUser(): ?string
  92.     {
  93.         return $this->createUser;
  94.     }
  95.     public function setCreateUser(?string $createUser): static
  96.     {
  97.         $this->createUser $createUser;
  98.         return $this;
  99.     }
  100.     public function getUpdateUser(): ?string
  101.     {
  102.         return $this->updateUser;
  103.     }
  104.     public function setUpdateUser(?string $updateUser): static
  105.     {
  106.         $this->updateUser $updateUser;
  107.         return $this;
  108.     }
  109.     public function getTerEmpresaCliente(): ?TerEmpresaCliente
  110.     {
  111.         return $this->terEmpresaCliente;
  112.     }
  113.     public function setTerEmpresaCliente(?TerEmpresaCliente $terEmpresaCliente): static
  114.     {
  115.         $this->terEmpresaCliente $terEmpresaCliente;
  116.         return $this;
  117.     }
  118.     public function getComHojaVidaAsociado(): ?ComHojaVidaAsociado
  119.     {
  120.         return $this->comHojaVidaAsociado;
  121.     }
  122.     public function setComHojaVidaAsociado(?ComHojaVidaAsociado $comHojaVidaAsociado): static
  123.     {
  124.         $this->comHojaVidaAsociado $comHojaVidaAsociado;
  125.         return $this;
  126.     }
  127. }