src/Entity/Adresse.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AdresseRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=AdresseRepository::class)
  7.  */
  8. class Adresse
  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 $lib_adresse;
  20.     /**
  21.      * @ORM\Column(type="string", length=255, nullable=true)
  22.      */
  23.     private $ligne_1;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $ligne_2;
  28.     /**
  29.      * @ORM\Column(type="string", length=20, nullable=true)
  30.      */
  31.     private $code_postal;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $ville;
  36.     /**
  37.      * @ORM\Column(type="string", length=255, nullable=true)
  38.      */
  39.     private $pays;
  40.     /**
  41.      * @ORM\ManyToOne(targetEntity=Tiers::class, inversedBy="adresses")
  42.      * @ORM\JoinColumn(nullable=true)
  43.      */
  44.     private $tiers;
  45.     /**
  46.      * @ORM\ManyToOne(targetEntity=Societe::class, inversedBy="adresses")
  47.      * @ORM\JoinColumn(nullable=true)
  48.      */
  49.     private $societe;
  50.     public function getId(): ?int
  51.     {
  52.         return $this->id;
  53.     }
  54.     public function getLibAdresse(): ?string
  55.     {
  56.         return $this->lib_adresse;
  57.     }
  58.     public function setLibAdresse(string $lib_adresse): self
  59.     {
  60.         $this->lib_adresse $lib_adresse;
  61.         return $this;
  62.     }
  63.     public function getLigne1(): ?string
  64.     {
  65.         return $this->ligne_1;
  66.     }
  67.     public function setLigne1(?string $ligne_1): self
  68.     {
  69.         $this->ligne_1 $ligne_1;
  70.         return $this;
  71.     }
  72.     public function getLigne2(): ?string
  73.     {
  74.         return $this->ligne_2;
  75.     }
  76.     public function setLigne2(string $ligne_2): self
  77.     {
  78.         $this->ligne_2 $ligne_2;
  79.         return $this;
  80.     }
  81.     public function getCodePostal(): ?string
  82.     {
  83.         return $this->code_postal;
  84.     }
  85.     public function setCodePostal(?string $code_postal): self
  86.     {
  87.         $this->code_postal $code_postal;
  88.         return $this;
  89.     }
  90.     public function getVille(): ?string
  91.     {
  92.         return $this->ville;
  93.     }
  94.     public function setVille(?string $ville): self
  95.     {
  96.         $this->ville $ville;
  97.         return $this;
  98.     }
  99.     public function getPays(): ?string
  100.     {
  101.         return $this->pays;
  102.     }
  103.     public function setPays(?string $pays): self
  104.     {
  105.         $this->pays $pays;
  106.         return $this;
  107.     }
  108.     public function getTiers(): ?Tiers
  109.     {
  110.         return $this->tiers;
  111.     }
  112.     public function setTiers(?Tiers $tiers): self
  113.     {
  114.         $this->tiers $tiers;
  115.         return $this;
  116.     }
  117.     public function getSociete(): ?Societe
  118.     {
  119.         return $this->societe;
  120.     }
  121.     public function setSociete(?Societe $societe): self
  122.     {
  123.         $this->societe $societe;
  124.         return $this;
  125.     }
  126. }