src/Entity/Assurance.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AssuranceRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=AssuranceRepository::class)
  7.  */
  8. class Assurance
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $titre;
  20.     /**
  21.      * @ORM\Column(type="float", nullable=true)
  22.      */
  23.     private $taux;
  24.     /**
  25.      * @ORM\Column(type="text", nullable=true)
  26.      */
  27.     private $assiette;
  28.     /**
  29.      * @ORM\Column(type="text", nullable=true)
  30.      */
  31.     private $minimumPerception;
  32.     /**
  33.      * @ORM\Column(type="text")
  34.      */
  35.     private $fonctionnement;
  36.     /**
  37.      * @ORM\Column(type="text")
  38.      */
  39.     private $conditionsUtilisation;
  40.     /**
  41.      * @ORM\Column(type="string", length=255)
  42.      */
  43.     private $payable;
  44.     /**
  45.      * @ORM\Column(type="text")
  46.      */
  47.     private $conditions;
  48.     /**
  49.      * @ORM\Column(type="boolean", nullable="true")
  50.      */
  51.     private $assuranceBase;
  52.     public function getId(): ?int
  53.     {
  54.         return $this->id;
  55.     }
  56.     public function getTitre(): ?string
  57.     {
  58.         return $this->titre;
  59.     }
  60.     public function setTitre(string $titre): self
  61.     {
  62.         $this->titre $titre;
  63.         return $this;
  64.     }
  65.     public function getTaux(): ?float
  66.     {
  67.         return $this->taux;
  68.     }
  69.     public function setTaux(?float $taux): self
  70.     {
  71.         $this->taux $taux;
  72.         return $this;
  73.     }
  74.     public function getAssiette(): ?string
  75.     {
  76.         return $this->assiette;
  77.     }
  78.     public function setAssiette(?string $assiette): self
  79.     {
  80.         $this->assiette $assiette;
  81.         return $this;
  82.     }
  83.     public function getMinimumPerception(): ?string
  84.     {
  85.         return $this->minimumPerception;
  86.     }
  87.     public function setMinimumPerception(?string $minimumPerception): self
  88.     {
  89.         $this->minimumPerception $minimumPerception;
  90.         return $this;
  91.     }
  92.     public function getFonctionnement(): ?string
  93.     {
  94.         return $this->fonctionnement;
  95.     }
  96.     public function setFonctionnement(string $fonctionnement): self
  97.     {
  98.         $this->fonctionnement $fonctionnement;
  99.         return $this;
  100.     }
  101.     public function getConditionsUtilisation(): ?string
  102.     {
  103.         return $this->conditionsUtilisation;
  104.     }
  105.     public function setConditionsUtilisation(string $conditionsUtilisation): self
  106.     {
  107.         $this->conditionsUtilisation $conditionsUtilisation;
  108.         return $this;
  109.     }
  110.     public function getPayable(): ?string
  111.     {
  112.         return $this->payable;
  113.     }
  114.     public function setPayable(string $payable): self
  115.     {
  116.         $this->payable $payable;
  117.         return $this;
  118.     }
  119.     public function getConditions(): ?string
  120.     {
  121.         return $this->conditions;
  122.     }
  123.     public function setConditions(string $conditions): self
  124.     {
  125.         $this->conditions $conditions;
  126.         return $this;
  127.     }
  128.     public function isAssuranceBase(): ?bool
  129.     {
  130.         return $this->assuranceBase;
  131.     }
  132.     public function setAssuranceBase(bool $assuranceBase): self
  133.     {
  134.         $this->assuranceBase $assuranceBase;
  135.         return $this;
  136.     }
  137. }