src/Entity/BatimentTypeRenovation.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. /**
  4.  * BatimentTypeRenovation.
  5.  */
  6. class BatimentTypeRenovation
  7. {
  8.     /**
  9.      * @var int
  10.      */
  11.     private $id;
  12.     /**
  13.      * @var string
  14.      */
  15.     private $code;
  16.     /**
  17.      * @var string
  18.      */
  19.     private $presicionAutre;
  20.     /**
  21.      * @var string
  22.      */
  23.     private $titre;
  24.     /**
  25.      * @var string
  26.      */
  27.     private $anneeRenovation;
  28.     /**
  29.      * @var \App\Entity\TypeRenovation
  30.      */
  31.     private $TypeRenovation;
  32.     /**
  33.      * @var \App\Entity\Batiment
  34.      */
  35.     private $Batiment;
  36.     /**
  37.      * Get id.
  38.      *
  39.      * @return int
  40.      */
  41.     public function getId()
  42.     {
  43.         return $this->id;
  44.     }
  45.     /**
  46.      * Set code.
  47.      *
  48.      * @param string $code
  49.      *
  50.      * @return BatimentTypeRenovation
  51.      */
  52.     public function setCode($code)
  53.     {
  54.         $this->code $code;
  55.         return $this;
  56.     }
  57.     /**
  58.      * Get code.
  59.      *
  60.      * @return string
  61.      */
  62.     public function getCode()
  63.     {
  64.         return $this->code;
  65.     }
  66.     /**
  67.      * Set presicionAutre.
  68.      *
  69.      * @param string $presicionAutre
  70.      *
  71.      * @return BatimentTypeRenovation
  72.      */
  73.     public function setPresicionAutre($presicionAutre)
  74.     {
  75.         $this->presicionAutre $presicionAutre;
  76.         return $this;
  77.     }
  78.     /**
  79.      * Get presicionAutre.
  80.      *
  81.      * @return string
  82.      */
  83.     public function getPresicionAutre()
  84.     {
  85.         return $this->presicionAutre;
  86.     }
  87.     /**
  88.      * Set titre.
  89.      *
  90.      * @param string $titre
  91.      *
  92.      * @return BatimentTypeRenovation
  93.      */
  94.     public function setTitre($titre)
  95.     {
  96.         $this->titre $titre;
  97.         return $this;
  98.     }
  99.     /**
  100.      * Get titre.
  101.      *
  102.      * @return string
  103.      */
  104.     public function getTitre()
  105.     {
  106.         return $this->titre;
  107.     }
  108.     /**
  109.      * Set anneeRenovation.
  110.      *
  111.      * @param string $anneeRenovation
  112.      *
  113.      * @return BatimentTypeRenovation
  114.      */
  115.     public function setAnneeRenovation($anneeRenovation)
  116.     {
  117.         $this->anneeRenovation $anneeRenovation;
  118.         return $this;
  119.     }
  120.     /**
  121.      * Get anneeRenovation.
  122.      *
  123.      * @return string
  124.      */
  125.     public function getAnneeRenovation()
  126.     {
  127.         return $this->anneeRenovation;
  128.     }
  129.     /**
  130.      * Set typeRenovation.
  131.      *
  132.      * @param \App\Entity\TypeRenovation $typeRenovation
  133.      *
  134.      * @return BatimentTypeRenovation
  135.      */
  136.     public function setTypeRenovation(TypeRenovation $typeRenovation null)
  137.     {
  138.         $this->TypeRenovation $typeRenovation;
  139.         return $this;
  140.     }
  141.     /**
  142.      * Get typeRenovation.
  143.      *
  144.      * @return \App\Entity\TypeRenovation
  145.      */
  146.     public function getTypeRenovation()
  147.     {
  148.         return $this->TypeRenovation;
  149.     }
  150.     /**
  151.      * Set batiment.
  152.      *
  153.      * @param \App\Entity\Batiment $batiment
  154.      *
  155.      * @return BatimentTypeRenovation
  156.      */
  157.     public function setBatiment(Batiment $batiment null)
  158.     {
  159.         $this->Batiment $batiment;
  160.         return $this;
  161.     }
  162.     /**
  163.      * Get batiment.
  164.      *
  165.      * @return \App\Entity\Batiment
  166.      */
  167.     public function getBatiment()
  168.     {
  169.         return $this->Batiment;
  170.     }
  171. }