src/Entity/Adress.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  *@ORM\Table(name="adress")
  6.  * @ORM\Entity(repositoryClass="App\Repository\AdressRepository")
  7.  */
  8. class Adress
  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, nullable=true)
  18.      */
  19.     private $numadress;
  20.     /**
  21.      * @ORM\Column(type="string", length=255, nullable=true)
  22.      */
  23.     private $ruevoi;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $codepostal;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $ville;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $pays;
  36.     /**
  37.      * @ORM\Column(type="string", length=255, nullable=true)
  38.      */
  39.     private $type;
  40.     /**
  41.      * @ORM\Column(type="string", length=255, nullable=true)
  42.      */
  43.     private $nomadrres;
  44.     /**
  45.      * @ORM\Column(type="string", length=255, nullable=true)
  46.      */
  47.     private $prenomadress;
  48.     /**
  49.      * @ORM\Column(type="string", length=255, nullable=true)
  50.      */
  51.     private $organism;
  52.     public function getId(): ?int
  53.     {
  54.         return $this->id;
  55.     }
  56.     public function getNumadress(): ?string
  57.     {
  58.         return $this->numadress;
  59.     }
  60.     public function setNumadress(?string $numadress): self
  61.     {
  62.         $this->numadress $numadress;
  63.         return $this;
  64.     }
  65.     public function getRuevoi(): ?string
  66.     {
  67.         return $this->ruevoi;
  68.     }
  69.     public function setRuevoi(?string $ruevoi): self
  70.     {
  71.         $this->ruevoi $ruevoi;
  72.         return $this;
  73.     }
  74.     public function getCodepostal(): ?string
  75.     {
  76.         return $this->codepostal;
  77.     }
  78.     public function setCodepostal(?string $codepostal): self
  79.     {
  80.         $this->codepostal $codepostal;
  81.         return $this;
  82.     }
  83.     public function getVille(): ?string
  84.     {
  85.         return $this->ville;
  86.     }
  87.     public function setVille(?string $ville): self
  88.     {
  89.         $this->ville $ville;
  90.         return $this;
  91.     }
  92.     public function getPays(): ?string
  93.     {
  94.         return $this->pays;
  95.     }
  96.     public function setPays(?string $pays): self
  97.     {
  98.         $this->pays $pays;
  99.         return $this;
  100.     }
  101.     public function getType(): ?string
  102.     {
  103.         return $this->type;
  104.     }
  105.     public function setType(?string $type): self
  106.     {
  107.         $this->type $type;
  108.         return $this;
  109.     }
  110.     public function getNomadrres(): ?string
  111.     {
  112.         return $this->nomadrres;
  113.     }
  114.     public function setNomadrres(?string $nomadrres): self
  115.     {
  116.         $this->nomadrres $nomadrres;
  117.         return $this;
  118.     }
  119.     public function getPrenomadress(): ?string
  120.     {
  121.         return $this->prenomadress;
  122.     }
  123.     public function setPrenomadress(?string $prenomadress): self
  124.     {
  125.         $this->prenomadress $prenomadress;
  126.         return $this;
  127.     }
  128.     public function getOrganism(): ?string
  129.     {
  130.         return $this->organism;
  131.     }
  132.     public function setOrganism(?string $organism): self
  133.     {
  134.         $this->organism $organism;
  135.         return $this;
  136.     }
  137. }