src/Entity/PersonRepo.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PersonRepoRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=PersonRepoRepository::class)
  7.  */
  8. class PersonRepo
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $fullName;
  20.     /**
  21.      * @ORM\Column(type="text")
  22.      */
  23.     private $address;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $personKey;
  28.     /**
  29.      * @ORM\Column(type="string", length=255)
  30.      */
  31.     private $number;
  32.     /**
  33.      * @ORM\Column(type="string", length=255)
  34.      */
  35.     private $cellPhone;
  36.     /**
  37.      * @ORM\Column(type="text", nullable=true)
  38.      */
  39.     private $observations;
  40.     /**
  41.      * @ORM\Column(type="integer", nullable=true, name="external_db_id")
  42.      */
  43.     private $externalDB;
  44.     /**
  45.      * @ORM\Column(type="integer", nullable=true, name="sub_urb_id")
  46.      */
  47.     private $subUrb;
  48.     /**
  49.      * @ORM\Column(type="integer", nullable=true, name="v_booth_id")
  50.      */
  51.     private $voutingBooth;
  52.     /**
  53.      * @ORM\Column(type="string", length=255, nullable=true)
  54.      */
  55.     private $classification;
  56.     /**
  57.      * @ORM\Column(type="integer", nullable=true)
  58.      */
  59.     private $sectionId;
  60.     public function getId(): ?int
  61.     {
  62.         return $this->id;
  63.     }
  64.     public function getFullName(): ?string
  65.     {
  66.         return $this->fullName;
  67.     }
  68.     public function setFullName(string $fullName): self
  69.     {
  70.         $this->fullName $fullName;
  71.         return $this;
  72.     }
  73.     public function getAddress(): ?string
  74.     {
  75.         return $this->address;
  76.     }
  77.     public function setAddress(string $address): self
  78.     {
  79.         $this->address $address;
  80.         return $this;
  81.     }
  82.     public function getPersonKey(): ?string
  83.     {
  84.         return $this->personKey;
  85.     }
  86.     public function setPersonKey(string $personKey): self
  87.     {
  88.         $this->personKey $personKey;
  89.         return $this;
  90.     }
  91.     public function getNumber(): ?string
  92.     {
  93.         return $this->number;
  94.     }
  95.     public function setNumber(string $number): self
  96.     {
  97.         $this->number $number;
  98.         return $this;
  99.     }
  100.     public function getCellPhone(): ?string
  101.     {
  102.         return $this->cellPhone;
  103.     }
  104.     public function setCellPhone(string $cellPhone): self
  105.     {
  106.         $this->cellPhone $cellPhone;
  107.         return $this;
  108.     }
  109.     public function getObservations(): ?string
  110.     {
  111.         return $this->observations;
  112.     }
  113.     public function setObservations(?string $observations): self
  114.     {
  115.         $this->observations $observations;
  116.         return $this;
  117.     }
  118.     public function getExternalDB(): ?int
  119.     {
  120.         return $this->externalDB;
  121.     }
  122.     public function setExternalDB(?int $externalDB): self
  123.     {
  124.         $this->externalDB $externalDB;
  125.         return $this;
  126.     }
  127.     public function getSubUrb(): ?int
  128.     {
  129.         return $this->subUrb;
  130.     }
  131.     public function setSubUrb(?int $subUrb): self
  132.     {
  133.         $this->subUrb $subUrb;
  134.         return $this;
  135.     }
  136.     public function getVoutingBooth(): ?int
  137.     {
  138.         return $this->voutingBooth;
  139.     }
  140.     public function setVoutingBooth(?int $voutingBooth): self
  141.     {
  142.         $this->voutingBooth $voutingBooth;
  143.         return $this;
  144.     }
  145.     public function getClassification(): ?string
  146.     {
  147.         return $this->classification;
  148.     }
  149.     public function setClassification(?string $classification): self
  150.     {
  151.         $this->classification $classification;
  152.         return $this;
  153.     }
  154.     public function getSectionId(): ?int
  155.     {
  156.         return $this->sectionId;
  157.     }
  158.     public function setSectionId(?int $sectionId): self
  159.     {
  160.         $this->sectionId $sectionId;
  161.         return $this;
  162.     }
  163. }