<?php
namespace App\Entity;
use App\Repository\PlataformasPublicacionRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: PlataformasPublicacionRepository::class)]
class PlataformasPublicacion
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 100)]
private ?string $nombre = null;
#[ORM\Column(length: 5)]
private ?string $siglas = null;
#[ORM\Column]
private ?bool $baja = null;
#[ORM\ManyToMany(targetEntity: PropertyList::class, inversedBy: 'plataformasPublicacions')]
private Collection $listaPropiedades;
#[ORM\OneToMany(mappedBy: 'idPlataforma', targetEntity: DatosPlataformaPropertyList::class)]
private Collection $datosPlataformaPropertyLists;
public function __construct()
{
$this->listaPropiedades = new ArrayCollection();
$this->datosPlataformaPropertyLists = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getNombre(): ?string
{
return $this->nombre;
}
public function setNombre(string $nombre): static
{
$this->nombre = $nombre;
return $this;
}
public function getSiglas(): ?string
{
return $this->siglas;
}
public function setSiglas(string $siglas): static
{
$this->siglas = $siglas;
return $this;
}
public function isBaja(): ?bool
{
return $this->baja;
}
public function setBaja(bool $baja): static
{
$this->baja = $baja;
return $this;
}
/**
* @return Collection<int, PropertyList>
*/
public function getListaPropiedades(): Collection
{
return $this->listaPropiedades;
}
public function addListaPropiedade(PropertyList $listaPropiedade): static
{
if (!$this->listaPropiedades->contains($listaPropiedade)) {
$this->listaPropiedades->add($listaPropiedade);
}
return $this;
}
public function removeListaPropiedade(PropertyList $listaPropiedade): static
{
$this->listaPropiedades->removeElement($listaPropiedade);
return $this;
}
/**
* @return Collection<int, DatosPlataformaPropertyList>
*/
public function getDatosPlataformaPropertyLists(): Collection
{
return $this->datosPlataformaPropertyLists;
}
public function addDatosPlataformaPropertyList(DatosPlataformaPropertyList $datosPlataformaPropertyList): static
{
if (!$this->datosPlataformaPropertyLists->contains($datosPlataformaPropertyList)) {
$this->datosPlataformaPropertyLists->add($datosPlataformaPropertyList);
$datosPlataformaPropertyList->setIdPlataforma($this);
}
return $this;
}
public function removeDatosPlataformaPropertyList(DatosPlataformaPropertyList $datosPlataformaPropertyList): static
{
if ($this->datosPlataformaPropertyLists->removeElement($datosPlataformaPropertyList)) {
// set the owning side to null (unless already changed)
if ($datosPlataformaPropertyList->getIdPlataforma() === $this) {
$datosPlataformaPropertyList->setIdPlataforma(null);
}
}
return $this;
}
}