src/Entity/TravauxEffectuesPeriodeMesure.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. /**
  4.  * TravauxEffectuesPeriodeMesure.
  5.  */
  6. class TravauxEffectuesPeriodeMesure
  7. {
  8.     /**
  9.      * @var int
  10.      */
  11.     private $id;
  12.     /**
  13.      * @var string
  14.      */
  15.     private $code;
  16.     /**
  17.      * @var string
  18.      */
  19.     private $titre;
  20.     /**
  21.      * @var string
  22.      */
  23.     private $precisionAutre;
  24.     /**
  25.      * @var \App\Entity\Travaux
  26.      */
  27.     private $Travaux;
  28.     /**
  29.      * @var \App\Entity\Mesure
  30.      */
  31.     private $Mesure;
  32.     /**
  33.      * Get id.
  34.      *
  35.      * @return int
  36.      */
  37.     public function getId()
  38.     {
  39.         return $this->id;
  40.     }
  41.     /**
  42.      * Set code.
  43.      *
  44.      * @param string $code
  45.      *
  46.      * @return TravauxEffectuesPeriodeMesure
  47.      */
  48.     public function setCode($code)
  49.     {
  50.         $this->code $code;
  51.         return $this;
  52.     }
  53.     /**
  54.      * Get code.
  55.      *
  56.      * @return string
  57.      */
  58.     public function getCode()
  59.     {
  60.         return $this->code;
  61.     }
  62.     /**
  63.      * Set titre.
  64.      *
  65.      * @param string $titre
  66.      *
  67.      * @return TravauxEffectuesPeriodeMesure
  68.      */
  69.     public function setTitre($titre)
  70.     {
  71.         $this->titre $titre;
  72.         return $this;
  73.     }
  74.     /**
  75.      * Get titre.
  76.      *
  77.      * @return string
  78.      */
  79.     public function getTitre()
  80.     {
  81.         return $this->titre;
  82.     }
  83.     /**
  84.      * Set precisionAutre.
  85.      *
  86.      * @param string $precisionAutre
  87.      *
  88.      * @return TravauxEffectuesPeriodeMesure
  89.      */
  90.     public function setPrecisionAutre($precisionAutre)
  91.     {
  92.         $this->precisionAutre $precisionAutre;
  93.         return $this;
  94.     }
  95.     /**
  96.      * Get precisionAutre.
  97.      *
  98.      * @return string
  99.      */
  100.     public function getPrecisionAutre()
  101.     {
  102.         return $this->precisionAutre;
  103.     }
  104.     /**
  105.      * Set travaux.
  106.      *
  107.      * @param \App\Entity\Travaux $travaux
  108.      *
  109.      * @return TravauxEffectuesPeriodeMesure
  110.      */
  111.     public function setTravaux(Travaux $travaux null)
  112.     {
  113.         $this->Travaux $travaux;
  114.         return $this;
  115.     }
  116.     /**
  117.      * Get travaux.
  118.      *
  119.      * @return \App\Entity\Travaux
  120.      */
  121.     public function getTravaux()
  122.     {
  123.         return $this->Travaux;
  124.     }
  125.     /**
  126.      * Set mesure.
  127.      *
  128.      * @param \App\Entity\Mesure $mesure
  129.      *
  130.      * @return TravauxEffectuesPeriodeMesure
  131.      */
  132.     public function setMesure(Mesure $mesure null)
  133.     {
  134.         $this->Mesure $mesure;
  135.         return $this;
  136.     }
  137.     /**
  138.      * Get mesure.
  139.      *
  140.      * @return \App\Entity\Mesure
  141.      */
  142.     public function getMesure()
  143.     {
  144.         return $this->Mesure;
  145.     }
  146. }