<?php
namespace App\Entity;
use App\Repository\AssuranceRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=AssuranceRepository::class)
*/
class Assurance
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $titre;
/**
* @ORM\Column(type="float", nullable=true)
*/
private $taux;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $assiette;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $minimumPerception;
/**
* @ORM\Column(type="text")
*/
private $fonctionnement;
/**
* @ORM\Column(type="text")
*/
private $conditionsUtilisation;
/**
* @ORM\Column(type="string", length=255)
*/
private $payable;
/**
* @ORM\Column(type="text")
*/
private $conditions;
/**
* @ORM\Column(type="boolean", nullable="true")
*/
private $assuranceBase;
public function getId(): ?int
{
return $this->id;
}
public function getTitre(): ?string
{
return $this->titre;
}
public function setTitre(string $titre): self
{
$this->titre = $titre;
return $this;
}
public function getTaux(): ?float
{
return $this->taux;
}
public function setTaux(?float $taux): self
{
$this->taux = $taux;
return $this;
}
public function getAssiette(): ?string
{
return $this->assiette;
}
public function setAssiette(?string $assiette): self
{
$this->assiette = $assiette;
return $this;
}
public function getMinimumPerception(): ?string
{
return $this->minimumPerception;
}
public function setMinimumPerception(?string $minimumPerception): self
{
$this->minimumPerception = $minimumPerception;
return $this;
}
public function getFonctionnement(): ?string
{
return $this->fonctionnement;
}
public function setFonctionnement(string $fonctionnement): self
{
$this->fonctionnement = $fonctionnement;
return $this;
}
public function getConditionsUtilisation(): ?string
{
return $this->conditionsUtilisation;
}
public function setConditionsUtilisation(string $conditionsUtilisation): self
{
$this->conditionsUtilisation = $conditionsUtilisation;
return $this;
}
public function getPayable(): ?string
{
return $this->payable;
}
public function setPayable(string $payable): self
{
$this->payable = $payable;
return $this;
}
public function getConditions(): ?string
{
return $this->conditions;
}
public function setConditions(string $conditions): self
{
$this->conditions = $conditions;
return $this;
}
public function isAssuranceBase(): ?bool
{
return $this->assuranceBase;
}
public function setAssuranceBase(bool $assuranceBase): self
{
$this->assuranceBase = $assuranceBase;
return $this;
}
}