src/Entity/ZonasPoblaciones.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ZonasPoblacionesRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassZonasPoblacionesRepository::class)]
  8. class ZonasPoblaciones
  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\ManyToOne(inversedBy'zonasPoblaciones')]
  17.     #[ORM\JoinColumn(nullablefalse)]
  18.     private ?Poblaciones $idpoblacion null;
  19.     #[ORM\ManyToOne(inversedBy'zonasPoblaciones')]
  20.     #[ORM\JoinColumn(nullablefalse)]
  21.     private ?CodigosPostales $idcodigopostal null;
  22.     #[ORM\OneToMany(mappedBy'idzona'targetEntityPropertyList::class)]
  23.     private Collection $propertyLists;
  24.     public function __construct()
  25.     {
  26.         $this->propertyLists = new ArrayCollection();
  27.     }
  28.     public function getId(): ?int
  29.     {
  30.         return $this->id;
  31.     }
  32.     public function getNombre(): ?string
  33.     {
  34.         return $this->nombre;
  35.     }
  36.     public function setNombre(string $nombre): static
  37.     {
  38.         $this->nombre $nombre;
  39.         return $this;
  40.     }
  41.     public function getIdpoblacion(): ?Poblaciones
  42.     {
  43.         return $this->idpoblacion;
  44.     }
  45.     public function setIdpoblacion(?Poblaciones $idpoblacion): static
  46.     {
  47.         $this->idpoblacion $idpoblacion;
  48.         return $this;
  49.     }
  50.     public function getIdcodigopostal(): ?CodigosPostales
  51.     {
  52.         return $this->idcodigopostal;
  53.     }
  54.     public function setIdcodigopostal(?CodigosPostales $idcodigopostal): static
  55.     {
  56.         $this->idcodigopostal $idcodigopostal;
  57.         return $this;
  58.     }
  59.     /**
  60.      * @return Collection<int, PropertyList>
  61.      */
  62.     public function getPropertyLists(): Collection
  63.     {
  64.         return $this->propertyLists;
  65.     }
  66.     public function addPropertyList(PropertyList $propertyList): static
  67.     {
  68.         if (!$this->propertyLists->contains($propertyList)) {
  69.             $this->propertyLists->add($propertyList);
  70.             $propertyList->setIdzona($this);
  71.         }
  72.         return $this;
  73.     }
  74.     public function removePropertyList(PropertyList $propertyList): static
  75.     {
  76.         if ($this->propertyLists->removeElement($propertyList)) {
  77.             // set the owning side to null (unless already changed)
  78.             if ($propertyList->getIdzona() === $this) {
  79.                 $propertyList->setIdzona(null);
  80.             }
  81.         }
  82.         return $this;
  83.     }
  84. }