src/Entity/ComIdentificacionCliente.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComIdentificacionClienteRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassComIdentificacionClienteRepository::class)]
  7. class ComIdentificacionCliente
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\ManyToOne(inversedBy'comIdentificacionClientes')]
  14.     private ?TerEmpresaCliente $terEmpresaCliente null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $agenteCarga null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $usuarioApplySoft null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $estructuraAsuntoCorreos null;
  21.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  22.     private ?\DateTimeInterface $createAt null;
  23.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  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'comIdentificacionClientes')]
  30.     private ?ComHojaVida $comHojaVida null;
  31.     #[ORM\ManyToOne(inversedBy'comIdentificacionClientes')]
  32.     private ?ComHojaVidaAsociado $comHojaVidaAsociado null;
  33.     public function getId(): ?int
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function getTerEmpresaCliente(): ?TerEmpresaCliente
  38.     {
  39.         return $this->terEmpresaCliente;
  40.     }
  41.     public function setTerEmpresaCliente(?TerEmpresaCliente $terEmpresaCliente): static
  42.     {
  43.         $this->terEmpresaCliente $terEmpresaCliente;
  44.         return $this;
  45.     }
  46.     public function getAgenteCarga(): ?string
  47.     {
  48.         return $this->agenteCarga;
  49.     }
  50.     public function setAgenteCarga(?string $agenteCarga): static
  51.     {
  52.         $this->agenteCarga $agenteCarga;
  53.         return $this;
  54.     }
  55.     public function getUsuarioApplySoft(): ?string
  56.     {
  57.         return $this->usuarioApplySoft;
  58.     }
  59.     public function setUsuarioApplySoft(?string $usuarioApplySoft): static
  60.     {
  61.         $this->usuarioApplySoft $usuarioApplySoft;
  62.         return $this;
  63.     }
  64.     public function getEstructuraAsuntoCorreos(): ?string
  65.     {
  66.         return $this->estructuraAsuntoCorreos;
  67.     }
  68.     public function setEstructuraAsuntoCorreos(?string $estructuraAsuntoCorreos): static
  69.     {
  70.         $this->estructuraAsuntoCorreos $estructuraAsuntoCorreos;
  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 getComHojaVida(): ?ComHojaVida
  110.     {
  111.         return $this->comHojaVida;
  112.     }
  113.     public function setComHojaVida(?ComHojaVida $comHojaVida): static
  114.     {
  115.         $this->comHojaVida $comHojaVida;
  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. }