src/Entity/RealisationAction.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. /**
  4.  * RealisationAction.
  5.  */
  6. class RealisationAction
  7. {
  8.     /**
  9.      * @var int
  10.      */
  11.     private $id;
  12.     /**
  13.      * @var string
  14.      */
  15.     private $titre;
  16.     /**
  17.      * @var string
  18.      */
  19.     private $code;
  20.     /**
  21.      * @var \App\Entity\Action
  22.      */
  23.     private $Action;
  24.     /**
  25.      * @var \App\Entity\Mesure
  26.      */
  27.     private $Mesure;
  28.     /**
  29.      * Get id.
  30.      *
  31.      * @return int
  32.      */
  33.     public function getId()
  34.     {
  35.         return $this->id;
  36.     }
  37.     /**
  38.      * Set titre.
  39.      *
  40.      * @param string $titre
  41.      *
  42.      * @return RealisationAction
  43.      */
  44.     public function setTitre($titre)
  45.     {
  46.         $this->titre $titre;
  47.         return $this;
  48.     }
  49.     /**
  50.      * Get titre.
  51.      *
  52.      * @return string
  53.      */
  54.     public function getTitre()
  55.     {
  56.         return $this->titre;
  57.     }
  58.     /**
  59.      * Set code.
  60.      *
  61.      * @param string $code
  62.      *
  63.      * @return RealisationAction
  64.      */
  65.     public function setCode($code)
  66.     {
  67.         $this->code $code;
  68.         return $this;
  69.     }
  70.     /**
  71.      * Get code.
  72.      *
  73.      * @return string
  74.      */
  75.     public function getCode()
  76.     {
  77.         return $this->code;
  78.     }
  79.     /**
  80.      * Set action.
  81.      *
  82.      * @param \App\Entity\Action $action
  83.      *
  84.      * @return RealisationAction
  85.      */
  86.     public function setAction(Action $action null)
  87.     {
  88.         $this->Action $action;
  89.         return $this;
  90.     }
  91.     /**
  92.      * Get action.
  93.      *
  94.      * @return \App\Entity\Action
  95.      */
  96.     public function getAction()
  97.     {
  98.         return $this->Action;
  99.     }
  100.     /**
  101.      * Set mesure.
  102.      *
  103.      * @param \App\Entity\Mesure $mesure
  104.      *
  105.      * @return RealisationAction
  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. }