src/Entity/DatosPlataformaPropertyList.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DatosPlataformaPropertyListRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassDatosPlataformaPropertyListRepository::class)]
  6. class DatosPlataformaPropertyList
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\ManyToOne(inversedBy'datosPlataformaPropertyLists')]
  13.     #[ORM\JoinColumn(nullablefalse)]
  14.     private ?PropertyList $idPropertyList null;
  15.     #[ORM\ManyToOne(inversedBy'datosPlataformaPropertyLists')]
  16.     #[ORM\JoinColumn(nullablefalse)]
  17.     private ?PlataformasPublicacion $idPlataforma null;
  18.     #[ORM\Column]
  19.     private ?int $idEnPlataforma null;
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getIdPropertyList(): ?PropertyList
  25.     {
  26.         return $this->idPropertyList;
  27.     }
  28.     public function setIdPropertyList(?PropertyList $idPropertyList): static
  29.     {
  30.         $this->idPropertyList $idPropertyList;
  31.         return $this;
  32.     }
  33.     public function getIdPlataforma(): ?PlataformasPublicacion
  34.     {
  35.         return $this->idPlataforma;
  36.     }
  37.     public function setIdPlataforma(?PlataformasPublicacion $idPlataforma): static
  38.     {
  39.         $this->idPlataforma $idPlataforma;
  40.         return $this;
  41.     }
  42.     public function getIdEnPlataforma(): ?int
  43.     {
  44.         return $this->idEnPlataforma;
  45.     }
  46.     public function setIdEnPlataforma(int $idEnPlataforma): static
  47.     {
  48.         $this->idEnPlataforma $idEnPlataforma;
  49.         return $this;
  50.     }
  51. }