src/Entity/Imoveis.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ImoveisRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ImoveisRepository::class)
  7.  */
  8. class Imoveis
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(name="id", type="bigint")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255, nullable=true)
  18.      */
  19.     private $email;
  20.     /**
  21.      * @ORM\Column(type="string", length=20, nullable=true)
  22.      */
  23.     private $codStays;
  24.     /**
  25.      * @ORM\Column(type="string", length=20, nullable=true)
  26.      */
  27.     private $cpf;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $nome;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $celular;
  36.     /**
  37.      * @ORM\Column(type="string", length=255, nullable=true)
  38.      */
  39.     private $cidade;
  40.     /**
  41.      * @ORM\Column(type="string", length=255, nullable=true)
  42.      */
  43.     private $endereco;
  44.     /**
  45.      * @ORM\Column(type="string", length=255, nullable=true)
  46.      */
  47.     private $contrato;
  48.     /**
  49.      * @ORM\Column(type="float", nullable=true)
  50.      */
  51.     private $plano;
  52.     /**
  53.      * @ORM\Column(type="bigint", nullable=true)
  54.      */
  55.     private $objectID;
  56.     /**
  57.      * @ORM\Column(type="boolean", nullable=true)
  58.      */
  59.     private $aviso;
  60.     /**
  61.      * @ORM\Column(type="json", nullable=true)
  62.      */
  63.     private $inventario = [];
  64.     /**
  65.      * @ORM\Column(type="boolean", options={"default": 1})
  66.      */
  67.     private $status;
  68.     /**
  69.      * @ORM\Column(type="integer", nullable=true)
  70.      */
  71.     private $notaImovel;
  72.     /**
  73.      * @ORM\Column(type="integer", nullable=true)
  74.      */
  75.     private $notaLocalizao;
  76.     /**
  77.      * @ORM\Column(type="string", length=255, nullable=true)
  78.      */
  79.     private $perfilProprietario;
  80.     /**
  81.      * @ORM\Column(type="boolean", nullable=true)
  82.      */
  83.     private $reservaImediata;
  84.     /**
  85.      * @ORM\Column(type="boolean", nullable=true)
  86.      */
  87.     private $imovelVenda;
  88.     public function getId(): ?int
  89.     {
  90.         return $this->id;
  91.     }
  92.     public function setId(?int $id): self
  93.     {
  94.         $this->id $id;
  95.         return $this;
  96.     }
  97.     public function getEmail(): ?string
  98.     {
  99.         return $this->email;
  100.     }
  101.     public function setEmail(?string $email): self
  102.     {
  103.         $this->email $email;
  104.         return $this;
  105.     }
  106.     public function getCodStays(): ?string
  107.     {
  108.         return $this->codStays;
  109.     }
  110.     public function setCodStays(?string $codStays): self
  111.     {
  112.         $this->codStays $codStays;
  113.         return $this;
  114.     }
  115.     public function getCpf(): ?string
  116.     {
  117.         return $this->cpf;
  118.     }
  119.     public function setCpf(?string $cpf): self
  120.     {
  121.         $this->cpf $cpf;
  122.         return $this;
  123.     }
  124.     public function getNome(): ?string
  125.     {
  126.         return $this->nome;
  127.     }
  128.     public function setNome(?string $nome): self
  129.     {
  130.         $this->nome $nome;
  131.         return $this;
  132.     }
  133.     public function getCelular(): ?string
  134.     {
  135.         return $this->celular;
  136.     }
  137.     public function setCelular(string $celular): self
  138.     {
  139.         $this->celular $celular;
  140.         return $this;
  141.     }
  142.     public function getCidade(): ?string
  143.     {
  144.         return $this->cidade;
  145.     }
  146.     public function setCidade(?string $cidade): self
  147.     {
  148.         $this->cidade $cidade;
  149.         return $this;
  150.     }
  151.     public function getEndereco(): ?string
  152.     {
  153.         return $this->endereco;
  154.     }
  155.     public function setEndereco(?string $endereco): self
  156.     {
  157.         $this->endereco $endereco;
  158.         return $this;
  159.     }
  160.     public function getContrato(): ?string
  161.     {
  162.         return $this->contrato;
  163.     }
  164.     public function setContrato(?string $contrato): self
  165.     {
  166.         $this->contrato $contrato;
  167.         return $this;
  168.     }
  169.     public function getPlano(): ?float
  170.     {
  171.         return $this->plano;
  172.     }
  173.     public function setPlano(?float $plano): self
  174.     {
  175.         $this->plano $plano;
  176.         return $this;
  177.     }
  178.     public function getObjectID(): ?string
  179.     {
  180.         return $this->objectID;
  181.     }
  182.     public function setObjectID(string $objectID): self
  183.     {
  184.         $this->objectID $objectID;
  185.         return $this;
  186.     }
  187.     public function getAviso(): ?bool
  188.     {
  189.         return $this->aviso;
  190.     }
  191.     public function setAviso(?bool $aviso): self
  192.     {
  193.         $this->aviso $aviso;
  194.         return $this;
  195.     }
  196.     public function getInventario(): ?array
  197.     {
  198.         return $this->inventario;
  199.     }
  200.     public function setInventario(?array $inventario): self
  201.     {
  202.         $this->inventario $inventario;
  203.         return $this;
  204.     }
  205.     public function getStatus(): ?bool
  206.     {
  207.         return $this->status;
  208.     }
  209.     public function setStatus(bool $status): self
  210.     {
  211.         $this->status $status;
  212.         return $this;
  213.     }
  214.     public function getNotaImovel(): ?int
  215.     {
  216.         return $this->notaImovel;
  217.     }
  218.     public function setNotaImovel(?int $notaImovel): self
  219.     {
  220.         $this->notaImovel $notaImovel;
  221.         return $this;
  222.     }
  223.     public function getNotaLocalizao(): ?int
  224.     {
  225.         return $this->notaLocalizao;
  226.     }
  227.     public function setNotaLocalizao(?int $notaLocalizao): self
  228.     {
  229.         $this->notaLocalizao $notaLocalizao;
  230.         return $this;
  231.     }
  232.     public function getPerfilProprietario(): ?string
  233.     {
  234.         return $this->perfilProprietario;
  235.     }
  236.     public function setPerfilProprietario(?string $perfilProprietario): self
  237.     {
  238.         $this->perfilProprietario $perfilProprietario;
  239.         return $this;
  240.     }
  241.     public function getReservaImediata(): ?bool
  242.     {
  243.         return $this->reservaImediata;
  244.     }
  245.     public function setReservaImediata(?bool $reservaImediata): self
  246.     {
  247.         $this->reservaImediata $reservaImediata;
  248.         return $this;
  249.     }
  250.     public function getImovelVenda(): ?bool
  251.     {
  252.         return $this->imovelVenda;
  253.     }
  254.     public function setImovelVenda(?bool $imovelVenda): self
  255.     {
  256.         $this->imovelVenda $imovelVenda;
  257.         return $this;
  258.     }
  259. }