src/Entity/Alertes.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AlertesRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=AlertesRepository::class)
  7.  */
  8. class Alertes
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=Villes::class, inversedBy="alertes")
  18.      */
  19.     private $Villes;
  20.     /**
  21.      * @ORM\Column(type="integer", nullable=true)
  22.      */
  23.     private $Rayon;
  24.     /**
  25.      * @ORM\ManyToOne(targetEntity=Categories::class, inversedBy="alertes")
  26.      */
  27.     private $Categories;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $Texte;
  32.     /**
  33.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="alertes")
  34.      */
  35.     private $User;
  36.     public function getId(): ?int
  37.     {
  38.         return $this->id;
  39.     }
  40.     public function getVilles(): ?Villes
  41.     {
  42.         return $this->Villes;
  43.     }
  44.     public function setVilles(?Villes $Villes): self
  45.     {
  46.         $this->Villes $Villes;
  47.         return $this;
  48.     }
  49.     public function getRayon(): ?int
  50.     {
  51.         return $this->Rayon;
  52.     }
  53.     public function setRayon(?int $Rayon): self
  54.     {
  55.         $this->Rayon $Rayon;
  56.         return $this;
  57.     }
  58.     public function getCategories(): ?Categories
  59.     {
  60.         return $this->Categories;
  61.     }
  62.     public function setCategories(?Categories $Categories): self
  63.     {
  64.         $this->Categories $Categories;
  65.         return $this;
  66.     }
  67.     public function getTexte(): ?string
  68.     {
  69.         return $this->Texte;
  70.     }
  71.     public function setTexte(?string $Texte): self
  72.     {
  73.         $this->Texte $Texte;
  74.         return $this;
  75.     }
  76.     public function getUser(): ?User
  77.     {
  78.         return $this->User;
  79.     }
  80.     public function setUser(?User $User): self
  81.     {
  82.         $this->User $User;
  83.         return $this;
  84.     }
  85. }