src/Entity/PlataformasPublicacion.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PlataformasPublicacionRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassPlataformasPublicacionRepository::class)]
  8. class PlataformasPublicacion
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length100)]
  15.     private ?string $nombre null;
  16.     #[ORM\Column(length5)]
  17.     private ?string $siglas null;
  18.     #[ORM\Column]
  19.     private ?bool $baja null;
  20.     #[ORM\ManyToMany(targetEntityPropertyList::class, inversedBy'plataformasPublicacions')]
  21.     private Collection $listaPropiedades;
  22.     #[ORM\OneToMany(mappedBy'idPlataforma'targetEntityDatosPlataformaPropertyList::class)]
  23.     private Collection $datosPlataformaPropertyLists;
  24.     public function __construct()
  25.     {
  26.         $this->listaPropiedades = new ArrayCollection();
  27.         $this->datosPlataformaPropertyLists = new ArrayCollection();
  28.     }
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getNombre(): ?string
  34.     {
  35.         return $this->nombre;
  36.     }
  37.     public function setNombre(string $nombre): static
  38.     {
  39.         $this->nombre $nombre;
  40.         return $this;
  41.     }
  42.     public function getSiglas(): ?string
  43.     {
  44.         return $this->siglas;
  45.     }
  46.     public function setSiglas(string $siglas): static
  47.     {
  48.         $this->siglas $siglas;
  49.         return $this;
  50.     }
  51.     public function isBaja(): ?bool
  52.     {
  53.         return $this->baja;
  54.     }
  55.     public function setBaja(bool $baja): static
  56.     {
  57.         $this->baja $baja;
  58.         return $this;
  59.     }
  60.     /**
  61.      * @return Collection<int, PropertyList>
  62.      */
  63.     public function getListaPropiedades(): Collection
  64.     {
  65.         return $this->listaPropiedades;
  66.     }
  67.     public function addListaPropiedade(PropertyList $listaPropiedade): static
  68.     {
  69.         if (!$this->listaPropiedades->contains($listaPropiedade)) {
  70.             $this->listaPropiedades->add($listaPropiedade);
  71.         }
  72.         return $this;
  73.     }
  74.     public function removeListaPropiedade(PropertyList $listaPropiedade): static
  75.     {
  76.         $this->listaPropiedades->removeElement($listaPropiedade);
  77.         return $this;
  78.     }
  79.     /**
  80.      * @return Collection<int, DatosPlataformaPropertyList>
  81.      */
  82.     public function getDatosPlataformaPropertyLists(): Collection
  83.     {
  84.         return $this->datosPlataformaPropertyLists;
  85.     }
  86.     public function addDatosPlataformaPropertyList(DatosPlataformaPropertyList $datosPlataformaPropertyList): static
  87.     {
  88.         if (!$this->datosPlataformaPropertyLists->contains($datosPlataformaPropertyList)) {
  89.             $this->datosPlataformaPropertyLists->add($datosPlataformaPropertyList);
  90.             $datosPlataformaPropertyList->setIdPlataforma($this);
  91.         }
  92.         return $this;
  93.     }
  94.     public function removeDatosPlataformaPropertyList(DatosPlataformaPropertyList $datosPlataformaPropertyList): static
  95.     {
  96.         if ($this->datosPlataformaPropertyLists->removeElement($datosPlataformaPropertyList)) {
  97.             // set the owning side to null (unless already changed)
  98.             if ($datosPlataformaPropertyList->getIdPlataforma() === $this) {
  99.                 $datosPlataformaPropertyList->setIdPlataforma(null);
  100.             }
  101.         }
  102.         return $this;
  103.     }
  104. }