<?phpnamespace App\Entity;use App\Repository\ComArchivoPlanoRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ComArchivoPlanoRepository::class)]class ComArchivoPlano{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(length: 255, nullable: true)] private ?string $cantidadConsecutivos = null; #[ORM\ManyToOne(inversedBy: 'comArchivoPlanos')] private ?TerEmpresa $terEmpresa = null; #[ORM\Column(length: 255, nullable: true)] private ?string $cargarArchivoPlano = 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: 'comArchivoPlanos')] private ?TerEmpresaCliente $terEmpresaCliente = null; #[ORM\Column(nullable: true)] private ?array $ofertasAsociadas = null; public function getId(): ?int { return $this->id; } public function getCantidadConsecutivos(): ?string { return $this->cantidadConsecutivos; } public function setCantidadConsecutivos(?string $cantidadConsecutivos): static { $this->cantidadConsecutivos = $cantidadConsecutivos; return $this; } public function getTerEmpresa(): ?TerEmpresa { return $this->terEmpresa; } public function setTerEmpresa(?TerEmpresa $terEmpresa): static { $this->terEmpresa = $terEmpresa; return $this; } public function getCargarArchivoPlano(): ?string { return $this->cargarArchivoPlano; } public function setCargarArchivoPlano(?string $cargarArchivoPlano): static { $this->cargarArchivoPlano = $cargarArchivoPlano; 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; } public function getOfertasAsociadas(): ?array { return $this->ofertasAsociadas; } public function setOfertasAsociadas(?array $ofertasAsociadas): static { $this->ofertasAsociadas = $ofertasAsociadas; return $this; }}