src/Entity/Interests.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\InterestsRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassInterestsRepository::class)]
  7. class Interests
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(nullabletrue)]
  14.     private ?int $min_price null;
  15.     #[ORM\Column(nullabletrue)]
  16.     private ?int $max_price null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $city null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $barrio null;
  21.     #[ORM\Column(nullabletrue)]
  22.     private ?int $min_surface null;
  23.     #[ORM\Column(nullabletrue)]
  24.     private ?int $max_surface null;
  25.     #[ORM\Column(nullabletrue)]
  26.     private ?int $min_beds null;
  27.     #[ORM\Column(nullabletrue)]
  28.     private ?int $max_beds null;
  29.     #[ORM\Column(nullabletrue)]
  30.     private ?int $min_baths null;
  31.     #[ORM\Column(nullabletrue)]
  32.     private ?int $max_baths null;
  33.     #[ORM\Column(typeTypes::ARRAY,  nullabletrue)]
  34.     private ?array $subtype = [];
  35.     //#[ORM\OneToOne(inversedBy: 'interests', cascade: ['persist', 'remove'])]
  36.     //private ?PotentialClients $potentialClient = null;
  37.     #[ORM\Column(nullabletrue)]
  38.     private ?bool $buy null;
  39.     #[ORM\Column(nullabletrue)]
  40.     private ?bool $rent null;
  41.     #[ORM\Column(nullabletrue)]
  42.     private ?bool $invest null;
  43.     #[ORM\Column(typeTypes::ARRAY, nullabletrue)]
  44.     private array $propertyType = [];
  45.     /*
  46.     public function __toString(): string
  47.     {
  48.         return $this->getPotentialClient->getPotentialName().' '.$this->getPotentialClient->getPotentialSurname();
  49.     }
  50.     */
  51.     public function getId(): ?int
  52.     {
  53.         return $this->id;
  54.     }
  55.     public function getMinPrice(): ?int
  56.     {
  57.         return $this->min_price;
  58.     }
  59.     public function setMinPrice(?int $min_price): static
  60.     {
  61.         $this->min_price $min_price;
  62.         return $this;
  63.     }
  64.     public function getMaxPrice(): ?int
  65.     {
  66.         return $this->max_price;
  67.     }
  68.     public function setMaxPrice(?int $max_price): static
  69.     {
  70.         $this->max_price $max_price;
  71.         return $this;
  72.     }
  73.    
  74.     public function getCity(): ?string
  75.     {
  76.         return $this->city;
  77.     }
  78.     public function setCity(?string $city): static
  79.     {
  80.         $this->city $city;
  81.         return $this;
  82.     }
  83.     public function getBarrio(): ?string
  84.     {
  85.         return $this->barrio;
  86.     }
  87.     public function setBarrio(?string $barrio): static
  88.     {
  89.         $this->barrio $barrio;
  90.         return $this;
  91.     }
  92.     public function getMinSurface(): ?int
  93.     {
  94.         return $this->min_surface;
  95.     }
  96.     public function setMinSurface(?int $min_surface): static
  97.     {
  98.         $this->min_surface $min_surface;
  99.         return $this;
  100.     }
  101.     public function getMaxSurface(): ?int
  102.     {
  103.         return $this->max_surface;
  104.     }
  105.     public function setMaxSurface(?int $max_surface): static
  106.     {
  107.         $this->max_surface $max_surface;
  108.         return $this;
  109.     }
  110.     public function getMinBeds(): ?int
  111.     {
  112.         return $this->min_beds;
  113.     }
  114.     public function setMinBeds(?int $min_beds): static
  115.     {
  116.         $this->min_beds $min_beds;
  117.         return $this;
  118.     }
  119.     public function getMaxBeds(): ?int
  120.     {
  121.         return $this->max_beds;
  122.     }
  123.     public function setMaxBeds(?int $max_beds): static
  124.     {
  125.         $this->max_beds $max_beds;
  126.         return $this;
  127.     }
  128.     public function getMinBaths(): ?int
  129.     {
  130.         return $this->min_baths;
  131.     }
  132.     public function setMinBaths(?int $min_baths): static
  133.     {
  134.         $this->min_baths $min_baths;
  135.         return $this;
  136.     }
  137.     public function getMaxBaths(): ?int
  138.     {
  139.         return $this->max_baths;
  140.     }
  141.     public function setMaxBaths(?int $max_baths): static
  142.     {
  143.         $this->max_baths $max_baths;
  144.         return $this;
  145.     }
  146.     public function getSubtype(): ?array
  147.     {
  148.         return $this->subtype;
  149.     }
  150.     public function setSubtype(?array $subtype): static
  151.     {
  152.         $this->subtype $subtype;
  153.         return $this;
  154.     }
  155.     /*
  156.     public function getPotentialClient(): ?PotentialClients
  157.     {
  158.         return $this->potentialClient;
  159.     }
  160.     public function setPotentialClient(?PotentialClients $potentialClient): static
  161.     {
  162.         $this->potentialClient = $potentialClient;
  163.         return $this;
  164.     }
  165.     */
  166.     public function isBuy(): ?bool
  167.     {
  168.         return $this->buy;
  169.     }
  170.     public function setBuy(?bool $buy): static
  171.     {
  172.         $this->buy $buy;
  173.         return $this;
  174.     }
  175.     public function isRent(): ?bool
  176.     {
  177.         return $this->rent;
  178.     }
  179.     public function setRent(?bool $rent): static
  180.     {
  181.         $this->rent $rent;
  182.         return $this;
  183.     }
  184.     public function isInvest(): ?bool
  185.     {
  186.         return $this->invest;
  187.     }
  188.     public function setInvest(?bool $invest): static
  189.     {
  190.         $this->invest $invest;
  191.         return $this;
  192.     }
  193.     public function getPropertyType(): array
  194.     {
  195.         return $this->propertyType;
  196.     }
  197.     public function setPropertyType(?array $propertyType): static
  198.     {
  199.         $this->propertyType $propertyType;
  200.         return $this;
  201.     }
  202. }