<?phpnamespace App\Entity;use App\Repository\ComServiciosContratadosRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ComServiciosContratadosRepository::class)]class ComServiciosContratados{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\ManyToOne(inversedBy: 'comServiciosContratados')] private ?ComOfertaComercial $comOfertaComercial = null; #[ORM\Column(nullable: true)] private ?array $serviciosContratadosInterlogistica = null; #[ORM\Column(nullable: true)] private ?array $serviciosContratadosLogistica = null; #[ORM\Column(nullable: true)] private ?array $serviciosContratadosServifranca = null; #[ORM\Column(length: 255, nullable: true)] private ?string $contratoComercial = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $fechaRegistroApply = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $fechaRegistroOpenComex = null; #[ORM\Column(length: 255, nullable: true)] private ?string $transporteNacionalInternacional = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $createAt = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $updateAt = null; #[ORM\Column(length: 255, nullable: true)] private ?string $createUser = null; #[ORM\Column(length: 255, nullable: true)] private ?string $updateUser = null; #[ORM\ManyToOne(inversedBy: 'comServiciosContratados')] private ?ComHojaVida $comHojaVida = null; #[ORM\ManyToOne(inversedBy: 'comServiciosContratados')] private ?ComHojaVidaAsociado $comHojaVidaAsociado = null; public function getId(): ?int { return $this->id; } public function getComOfertaComercial(): ?ComOfertaComercial { return $this->comOfertaComercial; } public function setComOfertaComercial(?ComOfertaComercial $comOfertaComercial): static { $this->comOfertaComercial = $comOfertaComercial; return $this; } public function getServiciosContratadosInterlogistica(): ?array { return $this->serviciosContratadosInterlogistica; } public function setServiciosContratadosInterlogistica(?array $serviciosContratadosInterlogistica): static { $this->serviciosContratadosInterlogistica = $serviciosContratadosInterlogistica; return $this; } public function getServiciosContratadosLogistica(): ?array { return $this->serviciosContratadosLogistica; } public function setServiciosContratadosLogistica(?array $serviciosContratadosLogistica): static { $this->serviciosContratadosLogistica = $serviciosContratadosLogistica; return $this; } public function getServiciosContratadosServifranca(): ?array { return $this->serviciosContratadosServifranca; } public function setServiciosContratadosServifranca(?array $serviciosContratadosServifranca): static { $this->serviciosContratadosServifranca = $serviciosContratadosServifranca; return $this; } public function getContratoComercial(): ?string { return $this->contratoComercial; } public function setContratoComercial(?string $contratoComercial): static { $this->contratoComercial = $contratoComercial; return $this; } public function getFechaRegistroApply(): ?\DateTimeInterface { return $this->fechaRegistroApply; } public function setFechaRegistroApply(?\DateTimeInterface $fechaRegistroApply): static { $this->fechaRegistroApply = $fechaRegistroApply; return $this; } public function getFechaRegistroOpenComex(): ?\DateTimeInterface { return $this->fechaRegistroOpenComex; } public function setFechaRegistroOpenComex(?\DateTimeInterface $fechaRegistroOpenComex): static { $this->fechaRegistroOpenComex = $fechaRegistroOpenComex; return $this; } public function getTransporteNacionalInternacional(): ?string { return $this->transporteNacionalInternacional; } public function setTransporteNacionalInternacional(?string $transporteNacionalInternacional): static { $this->transporteNacionalInternacional = $transporteNacionalInternacional; return $this; } public function getCreateAt(): ?\DateTimeInterface { return $this->createAt; } public function setCreateAt(?\DateTimeInterface $createAt): static { $this->createAt = $createAt; return $this; } public function getUpdateAt(): ?\DateTimeInterface { return $this->updateAt; } public function setUpdateAt(?\DateTimeInterface $updateAt): static { $this->updateAt = $updateAt; 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 getComHojaVida(): ?ComHojaVida { return $this->comHojaVida; } public function setComHojaVida(?ComHojaVida $comHojaVida): static { $this->comHojaVida = $comHojaVida; return $this; } public function getComHojaVidaAsociado(): ?ComHojaVidaAsociado { return $this->comHojaVidaAsociado; } public function setComHojaVidaAsociado(?ComHojaVidaAsociado $comHojaVidaAsociado): static { $this->comHojaVidaAsociado = $comHojaVidaAsociado; return $this; }}