<?php
namespace App\Entity;
use App\Repository\PersonRepoRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=PersonRepoRepository::class)
*/
class PersonRepo
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $fullName;
/**
* @ORM\Column(type="text")
*/
private $address;
/**
* @ORM\Column(type="string", length=255)
*/
private $personKey;
/**
* @ORM\Column(type="string", length=255)
*/
private $number;
/**
* @ORM\Column(type="string", length=255)
*/
private $cellPhone;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $observations;
/**
* @ORM\Column(type="integer", nullable=true, name="external_db_id")
*/
private $externalDB;
/**
* @ORM\Column(type="integer", nullable=true, name="sub_urb_id")
*/
private $subUrb;
/**
* @ORM\Column(type="integer", nullable=true, name="v_booth_id")
*/
private $voutingBooth;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $classification;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $sectionId;
public function getId(): ?int
{
return $this->id;
}
public function getFullName(): ?string
{
return $this->fullName;
}
public function setFullName(string $fullName): self
{
$this->fullName = $fullName;
return $this;
}
public function getAddress(): ?string
{
return $this->address;
}
public function setAddress(string $address): self
{
$this->address = $address;
return $this;
}
public function getPersonKey(): ?string
{
return $this->personKey;
}
public function setPersonKey(string $personKey): self
{
$this->personKey = $personKey;
return $this;
}
public function getNumber(): ?string
{
return $this->number;
}
public function setNumber(string $number): self
{
$this->number = $number;
return $this;
}
public function getCellPhone(): ?string
{
return $this->cellPhone;
}
public function setCellPhone(string $cellPhone): self
{
$this->cellPhone = $cellPhone;
return $this;
}
public function getObservations(): ?string
{
return $this->observations;
}
public function setObservations(?string $observations): self
{
$this->observations = $observations;
return $this;
}
public function getExternalDB(): ?int
{
return $this->externalDB;
}
public function setExternalDB(?int $externalDB): self
{
$this->externalDB = $externalDB;
return $this;
}
public function getSubUrb(): ?int
{
return $this->subUrb;
}
public function setSubUrb(?int $subUrb): self
{
$this->subUrb = $subUrb;
return $this;
}
public function getVoutingBooth(): ?int
{
return $this->voutingBooth;
}
public function setVoutingBooth(?int $voutingBooth): self
{
$this->voutingBooth = $voutingBooth;
return $this;
}
public function getClassification(): ?string
{
return $this->classification;
}
public function setClassification(?string $classification): self
{
$this->classification = $classification;
return $this;
}
public function getSectionId(): ?int
{
return $this->sectionId;
}
public function setSectionId(?int $sectionId): self
{
$this->sectionId = $sectionId;
return $this;
}
}