<?phpnamespace App\Entity;use App\Repository\ComComfirmarTarifaRepository;use Doctrine\Common\Collections\ArrayCollection;use Doctrine\Common\Collections\Collection;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ComComfirmarTarifaRepository::class)]class ComComfirmarTarifa{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $actualizacionApplySoft = null; #[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)] private ?\DateTimeInterface $actualizacionOpenComex = null; #[ORM\ManyToMany(targetEntity: ComInformacionContacto::class, inversedBy: 'comComfirmarTarifas')] private Collection $comInformacionContactoNotificacion; #[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: 'comComfirmarTarifas')] private ?TerEmpresaCliente $terEmpresaCliente = null; public function __construct() { $this->comInformacionContactoNotificacion = new ArrayCollection(); } public function getId(): ?int { return $this->id; } public function getActualizacionApplySoft(): ?\DateTimeInterface { return $this->actualizacionApplySoft; } public function setActualizacionApplySoft(?\DateTimeInterface $actualizacionApplySoft): static { $this->actualizacionApplySoft = $actualizacionApplySoft; return $this; } public function getActualizacionOpenComex(): ?\DateTimeInterface { return $this->actualizacionOpenComex; } public function setActualizacionOpenComex(?\DateTimeInterface $actualizacionOpenComex): static { $this->actualizacionOpenComex = $actualizacionOpenComex; return $this; } /** * @return Collection<int, ComInformacionContacto> */ public function getComInformacionContactoNotificacion(): Collection { return $this->comInformacionContactoNotificacion; } public function addComInformacionContactoNotificacion(ComInformacionContacto $comInformacionContactoNotificacion): static { if (!$this->comInformacionContactoNotificacion->contains($comInformacionContactoNotificacion)) { $this->comInformacionContactoNotificacion->add($comInformacionContactoNotificacion); } return $this; } public function removeComInformacionContactoNotificacion(ComInformacionContacto $comInformacionContactoNotificacion): static { $this->comInformacionContactoNotificacion->removeElement($comInformacionContactoNotificacion); 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 getTerEmpresaCliente(): ?TerEmpresaCliente { return $this->terEmpresaCliente; } public function setTerEmpresaCliente(?TerEmpresaCliente $terEmpresaCliente): static { $this->terEmpresaCliente = $terEmpresaCliente; return $this; }}