src/Entity/RepartitionOccupantsHeuresSemaine.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. /**
  4.  * RepartitionOccupantsHeuresSemaine.
  5.  */
  6. class RepartitionOccupantsHeuresSemaine
  7. {
  8.     /**
  9.      * @var int
  10.      */
  11.     private $id;
  12.     /**
  13.      * @var \App\Entity\Batiment
  14.      */
  15.     private $Batiment;
  16.     /**
  17.      * @var \App\Entity\TrancheAge
  18.      */
  19.     private $TrancheAge;
  20.     /**
  21.      * @var \App\Entity\ValeursRepartitionOccupants
  22.      */
  23.     private $ValeursRepartitionOccupants;
  24.     /**
  25.      * Get id.
  26.      *
  27.      * @return int
  28.      */
  29.     public function getId()
  30.     {
  31.         return $this->id;
  32.     }
  33.     /**
  34.      * Set batiment.
  35.      *
  36.      * @param \App\Entity\Batiment $batiment
  37.      *
  38.      * @return RepartitionOccupantsHeuresSemaine
  39.      */
  40.     public function setBatiment(Batiment $batiment null)
  41.     {
  42.         $this->Batiment $batiment;
  43.         return $this;
  44.     }
  45.     /**
  46.      * Get batiment.
  47.      *
  48.      * @return \App\Entity\Batiment
  49.      */
  50.     public function getBatiment()
  51.     {
  52.         return $this->Batiment;
  53.     }
  54.     /**
  55.      * Set trancheAge.
  56.      *
  57.      * @param \App\Entity\TrancheAge $trancheAge
  58.      *
  59.      * @return RepartitionOccupantsHeuresSemaine
  60.      */
  61.     public function setTrancheAge(TrancheAge $trancheAge null)
  62.     {
  63.         $this->TrancheAge $trancheAge;
  64.         return $this;
  65.     }
  66.     /**
  67.      * Get trancheAge.
  68.      *
  69.      * @return \App\Entity\TrancheAge
  70.      */
  71.     public function getTrancheAge()
  72.     {
  73.         return $this->TrancheAge;
  74.     }
  75.     /**
  76.      * Set valeursRepartitionOccupants.
  77.      *
  78.      * @param \App\Entity\ValeursRepartitionOccupants $valeursRepartitionOccupants
  79.      *
  80.      * @return RepartitionOccupantsHeuresSemaine
  81.      */
  82.     public function setValeursRepartitionOccupants(ValeursRepartitionOccupants $valeursRepartitionOccupants null)
  83.     {
  84.         $this->ValeursRepartitionOccupants $valeursRepartitionOccupants;
  85.         return $this;
  86.     }
  87.     /**
  88.      * Get valeursRepartitionOccupants.
  89.      *
  90.      * @return \App\Entity\ValeursRepartitionOccupants
  91.      */
  92.     public function getValeursRepartitionOccupants()
  93.     {
  94.         return $this->ValeursRepartitionOccupants;
  95.     }
  96.     /**
  97.      * @var \App\Entity\Mesure
  98.      */
  99.     private $Mesure;
  100.     /**
  101.      * Set mesure.
  102.      *
  103.      * @param \App\Entity\Mesure $mesure
  104.      *
  105.      * @return RepartitionOccupantsHeuresSemaine
  106.      */
  107.     public function setMesure(Mesure $mesure null)
  108.     {
  109.         $this->Mesure $mesure;
  110.         return $this;
  111.     }
  112.     /**
  113.      * Get mesure.
  114.      *
  115.      * @return \App\Entity\Mesure
  116.      */
  117.     public function getMesure()
  118.     {
  119.         return $this->Mesure;
  120.     }
  121. }