src/Entity/ComServiciosContratados.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComServiciosContratadosRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassComServiciosContratadosRepository::class)]
  7. class ComServiciosContratados
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\ManyToOne(inversedBy'comServiciosContratados')]
  14.     private ?ComOfertaComercial $comOfertaComercial null;
  15.     #[ORM\Column(nullabletrue)]
  16.     private ?array $serviciosContratadosInterlogistica null;
  17.     #[ORM\Column(nullabletrue)]
  18.     private ?array $serviciosContratadosLogistica null;
  19.     #[ORM\Column(nullabletrue)]
  20.     private ?array $serviciosContratadosServifranca null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $contratoComercial null;
  23.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  24.     private ?\DateTimeInterface $fechaRegistroApply null;
  25.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  26.     private ?\DateTimeInterface $fechaRegistroOpenComex null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $transporteNacionalInternacional null;
  29.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  30.     private ?\DateTimeInterface $createAt null;
  31.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  32.     private ?\DateTimeInterface $updateAt null;
  33.     #[ORM\Column(length255nullabletrue)]
  34.     private ?string $createUser null;
  35.     #[ORM\Column(length255nullabletrue)]
  36.     private ?string $updateUser null;
  37.     #[ORM\ManyToOne(inversedBy'comServiciosContratados')]
  38.     private ?ComHojaVida $comHojaVida null;
  39.     #[ORM\ManyToOne(inversedBy'comServiciosContratados')]
  40.     private ?ComHojaVidaAsociado $comHojaVidaAsociado null;
  41.     public function getId(): ?int
  42.     {
  43.         return $this->id;
  44.     }
  45.     public function getComOfertaComercial(): ?ComOfertaComercial
  46.     {
  47.         return $this->comOfertaComercial;
  48.     }
  49.     public function setComOfertaComercial(?ComOfertaComercial $comOfertaComercial): static
  50.     {
  51.         $this->comOfertaComercial $comOfertaComercial;
  52.         return $this;
  53.     }
  54.     public function getServiciosContratadosInterlogistica(): ?array
  55.     {
  56.         return $this->serviciosContratadosInterlogistica;
  57.     }
  58.     public function setServiciosContratadosInterlogistica(?array $serviciosContratadosInterlogistica): static
  59.     {
  60.         $this->serviciosContratadosInterlogistica $serviciosContratadosInterlogistica;
  61.         return $this;
  62.     }
  63.     public function getServiciosContratadosLogistica(): ?array
  64.     {
  65.         return $this->serviciosContratadosLogistica;
  66.     }
  67.     public function setServiciosContratadosLogistica(?array $serviciosContratadosLogistica): static
  68.     {
  69.         $this->serviciosContratadosLogistica $serviciosContratadosLogistica;
  70.         return $this;
  71.     }
  72.     public function getServiciosContratadosServifranca(): ?array
  73.     {
  74.         return $this->serviciosContratadosServifranca;
  75.     }
  76.     public function setServiciosContratadosServifranca(?array $serviciosContratadosServifranca): static
  77.     {
  78.         $this->serviciosContratadosServifranca $serviciosContratadosServifranca;
  79.         return $this;
  80.     }
  81.     public function getContratoComercial(): ?string
  82.     {
  83.         return $this->contratoComercial;
  84.     }
  85.     public function setContratoComercial(?string $contratoComercial): static
  86.     {
  87.         $this->contratoComercial $contratoComercial;
  88.         return $this;
  89.     }
  90.     public function getFechaRegistroApply(): ?\DateTimeInterface
  91.     {
  92.         return $this->fechaRegistroApply;
  93.     }
  94.     public function setFechaRegistroApply(?\DateTimeInterface $fechaRegistroApply): static
  95.     {
  96.         $this->fechaRegistroApply $fechaRegistroApply;
  97.         return $this;
  98.     }
  99.     public function getFechaRegistroOpenComex(): ?\DateTimeInterface
  100.     {
  101.         return $this->fechaRegistroOpenComex;
  102.     }
  103.     public function setFechaRegistroOpenComex(?\DateTimeInterface $fechaRegistroOpenComex): static
  104.     {
  105.         $this->fechaRegistroOpenComex $fechaRegistroOpenComex;
  106.         return $this;
  107.     }
  108.     public function getTransporteNacionalInternacional(): ?string
  109.     {
  110.         return $this->transporteNacionalInternacional;
  111.     }
  112.     public function setTransporteNacionalInternacional(?string $transporteNacionalInternacional): static
  113.     {
  114.         $this->transporteNacionalInternacional $transporteNacionalInternacional;
  115.         return $this;
  116.     }
  117.     public function getCreateAt(): ?\DateTimeInterface
  118.     {
  119.         return $this->createAt;
  120.     }
  121.     public function setCreateAt(?\DateTimeInterface $createAt): static
  122.     {
  123.         $this->createAt $createAt;
  124.         return $this;
  125.     }
  126.     public function getUpdateAt(): ?\DateTimeInterface
  127.     {
  128.         return $this->updateAt;
  129.     }
  130.     public function setUpdateAt(?\DateTimeInterface $updateAt): static
  131.     {
  132.         $this->updateAt $updateAt;
  133.         return $this;
  134.     }
  135.     public function getCreateUser(): ?string
  136.     {
  137.         return $this->createUser;
  138.     }
  139.     public function setCreateUser(?string $createUser): static
  140.     {
  141.         $this->createUser $createUser;
  142.         return $this;
  143.     }
  144.     public function getUpdateUser(): ?string
  145.     {
  146.         return $this->updateUser;
  147.     }
  148.     public function setUpdateUser(?string $updateUser): static
  149.     {
  150.         $this->updateUser $updateUser;
  151.         return $this;
  152.     }
  153.     public function getComHojaVida(): ?ComHojaVida
  154.     {
  155.         return $this->comHojaVida;
  156.     }
  157.     public function setComHojaVida(?ComHojaVida $comHojaVida): static
  158.     {
  159.         $this->comHojaVida $comHojaVida;
  160.         return $this;
  161.     }
  162.     public function getComHojaVidaAsociado(): ?ComHojaVidaAsociado
  163.     {
  164.         return $this->comHojaVidaAsociado;
  165.     }
  166.     public function setComHojaVidaAsociado(?ComHojaVidaAsociado $comHojaVidaAsociado): static
  167.     {
  168.         $this->comHojaVidaAsociado $comHojaVidaAsociado;
  169.         return $this;
  170.     }
  171. }