src/Entity/ZoneDepartementsPoids.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ZoneDepartementsPoidsRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=ZoneDepartementsPoidsRepository::class)
  9.  */
  10. class ZoneDepartementsPoids
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\ManyToOne(targetEntity=Annee::class, inversedBy="zoneDepartementsPoids")
  20.      */
  21.     private $annee
  22.     /**
  23.      * @ORM\ManyToOne(targetEntity=ZoneDepartements::class, inversedBy="zoneDepartementsPoids")
  24.      */
  25.     private $zoneDepartements;
  26.     /**
  27.      * @ORM\Column(type="float")
  28.      */
  29.     private $poids_min;
  30.     /**
  31.      * @ORM\Column(type="float")
  32.      */
  33.     private $poids_max;
  34.         /**
  35.      * @ORM\Column(type="float")
  36.      */
  37.     private $montant;
  38.     public function getId(): ?int
  39.     {
  40.         return $this->id;
  41.     }
  42.     public function getMontant(): ?float
  43.     {
  44.         return $this->montant;
  45.     }
  46.     public function setMontant(float $montant): self
  47.     {
  48.         $this->montant $montant;
  49.         return $this;
  50.     }
  51.     
  52.     public function getPoidsMin(): ?float
  53.     {
  54.         return $this->poids_min;
  55.     }
  56.     public function setPoidsMin(float $poids_min): self
  57.     {
  58.         $this->poids_min $poids_min;
  59.         return $this;
  60.     }
  61.     public function getPoidsMax(): ?float
  62.     {
  63.         return $this->poids_max;
  64.     }
  65.     public function setPoidsMax(float $poids_max): self
  66.     {
  67.         $this->poids_max $poids_max;
  68.         return $this;
  69.     }
  70.     public function setAnnee(?Annee $annee): self
  71.     {
  72.         $this->annee $annee;
  73.         return $this;
  74.     }
  75.     public function getAnnee(): ?Annee
  76.     {
  77.         return $this->annee;
  78.     }
  79.     public function setZoneDepartements(?ZoneDepartements $zoneDepartements): self
  80.     {
  81.         $this->zoneDepartements $zoneDepartements;
  82.         return $this;
  83.     }
  84.     public function getZoneDepartements(): ?ZoneDepartements
  85.     {
  86.         return $this->zoneDepartements;
  87.     }
  88. }