src/Entity/Frais.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FraisRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=FraisRepository::class)
  9.  */
  10. class Frais
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255)
  20.      */
  21.     private $titre;
  22.     /**
  23.      * @ORM\Column(type="text")
  24.      */
  25.     private $description;
  26.     /**
  27.      * @ORM\Column(type="float", nullable=true)
  28.      */
  29.     private $montant;
  30.     /**
  31.      * @ORM\Column(type="string", length=255, nullable=true)
  32.      */
  33.     private $alternativeMontant;
  34.     /**
  35.      * @ORM\ManyToOne(targetEntity=Zone::class, inversedBy="frais")
  36.      */
  37.     private $zone;
  38.     public function __construct()
  39.     {
  40.     }
  41.     public function getId(): ?int
  42.     {
  43.         return $this->id;
  44.     }
  45.     public function getTitre(): ?string
  46.     {
  47.         return $this->titre;
  48.     }
  49.     public function setTitre(string $titre): self
  50.     {
  51.         $this->titre $titre;
  52.         return $this;
  53.     }
  54.     public function getDescription(): ?string
  55.     {
  56.         return $this->description;
  57.     }
  58.     public function setDescription(string $description): self
  59.     {
  60.         $this->description $description;
  61.         return $this;
  62.     }
  63.     public function getMontant(): ?float
  64.     {
  65.         return $this->montant;
  66.     }
  67.     public function setMontant(float $montant): self
  68.     {
  69.         $this->montant $montant;
  70.         return $this;
  71.     }
  72.     public function getAlternativeMontant(): ?string
  73.     {
  74.         return $this->alternativeMontant;
  75.     }
  76.     public function setAlternativeMontant(?string $alternativeMontant): self
  77.     {
  78.         $this->alternativeMontant $alternativeMontant;
  79.         return $this;
  80.     }
  81.     public function getZone(): ?Zone
  82.     {
  83.         return $this->zone;
  84.     }
  85.     public function setZone(?Zone $zone): self
  86.     {
  87.         $this->zone $zone;
  88.         return $this;
  89.     }
  90. }