src/Entity/Assurance.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\TimestampableTrait;
  4. use App\Repository\AssuranceRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Symfony\Component\Validator\Constraints as Assert;
  7. /**
  8.  * @ORM\Entity(repositoryClass=AssuranceRepository::class)
  9.  */
  10. class Assurance
  11. {
  12.     use TimestampableTrait;
  13.     
  14.     /**
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @ORM\Column(type="string", length=255, nullable=true)
  22.      */
  23.     private $nom;
  24.     /**
  25.      * @ORM\Column(type="date", nullable=true)
  26.      */
  27.     private $dateDebut;
  28.     /**
  29.      * @ORM\Column(type="date", nullable=true)
  30.      */
  31.     private $dateFin;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $couverture;
  36.     /**
  37.      * @ORM\Column(type="float", nullable=true)
  38.      */
  39.     private $franchise;
  40.     /**
  41.      * @ORM\Column(type="text", nullable=true)
  42.      */
  43.     private $conditionsSpecifiques;
  44.     /**
  45.      * @ORM\Column(type="text", nullable=true)
  46.      */
  47.     private $beneficiaires;
  48.     /**
  49.      * @ORM\Column(type="string", length=255, nullable=true)
  50.      */
  51.     private $contractNumber;
  52.     /**
  53.      * @ORM\Column(type="text", nullable=true)
  54.      */
  55.     private $historiqueReclamations;
  56.     /**
  57.      * @ORM\Column(type="string", length=255, nullable=true)
  58.      */
  59.     private $policeNumber;
  60.     /**
  61.      * @ORM\ManyToOne(targetEntity=Vehicle::class, inversedBy="assurances")
  62.      */
  63.     private $vehicle;
  64.     /**
  65.      * @ORM\ManyToOne(targetEntity=Transporteur::class, inversedBy="assurances")
  66.      */
  67.     private $transporteur;
  68.     public function getId(): ?int
  69.     {
  70.         return $this->id;
  71.     }
  72.     public function getNom(): ?string
  73.     {
  74.         return $this->nom;
  75.     }
  76.     public function setNom(?string $nom): self
  77.     {
  78.         $this->nom $nom;
  79.         return $this;
  80.     }
  81.     public function getDateDebut(): ?\DateTimeInterface
  82.     {
  83.         return $this->dateDebut;
  84.     }
  85.     public function setDateDebut(?\DateTimeInterface $dateDebut): self
  86.     {
  87.         $this->dateDebut $dateDebut;
  88.         return $this;
  89.     }
  90.     public function getDateFin(): ?\DateTimeInterface
  91.     {
  92.         return $this->dateFin;
  93.     }
  94.     public function setDateFin(?\DateTimeInterface $dateFin): self
  95.     {
  96.         $this->dateFin $dateFin;
  97.         return $this;
  98.     }
  99.     public function getCouverture(): ?string
  100.     {
  101.         return $this->couverture;
  102.     }
  103.     public function setCouverture(?string $couverture): self
  104.     {
  105.         $this->couverture $couverture;
  106.         return $this;
  107.     }
  108.     public function getFranchise(): ?float
  109.     {
  110.         return $this->franchise;
  111.     }
  112.     public function setFranchise(?float $franchise): self
  113.     {
  114.         $this->franchise $franchise;
  115.         return $this;
  116.     }
  117.     public function getConditionsSpecifiques(): ?string
  118.     {
  119.         return $this->conditionsSpecifiques;
  120.     }
  121.     public function setConditionsSpecifiques(?string $conditionsSpecifiques): self
  122.     {
  123.         $this->conditionsSpecifiques $conditionsSpecifiques;
  124.         return $this;
  125.     }
  126.     public function getBeneficiaires(): ?string
  127.     {
  128.         return $this->beneficiaires;
  129.     }
  130.     public function setBeneficiaires(?string $beneficiaires): self
  131.     {
  132.         $this->beneficiaires $beneficiaires;
  133.         return $this;
  134.     }
  135.     public function getContractNumber(): ?string
  136.     {
  137.         return $this->contractNumber;
  138.     }
  139.     public function setContractNumber(?string $contractNumber): self
  140.     {
  141.         $this->contractNumber $contractNumber;
  142.         return $this;
  143.     }
  144.     public function getHistoriqueReclamations(): ?string
  145.     {
  146.         return $this->historiqueReclamations;
  147.     }
  148.     public function setHistoriqueReclamations(?string $historiqueReclamations): self
  149.     {
  150.         $this->historiqueReclamations $historiqueReclamations;
  151.         return $this;
  152.     }
  153.     public function getVehicle(): ?Vehicle
  154.     {
  155.         return $this->vehicle;
  156.     }
  157.     public function setVehicle(?Vehicle $vehicle): self
  158.     {
  159.         $this->vehicle $vehicle;
  160.         return $this;
  161.     }
  162.     public function getTransporteur(): ?Transporteur
  163.     {
  164.         return $this->transporteur;
  165.     }
  166.     public function setTransporteur(?Transporteur $transporteur): self
  167.     {
  168.         $this->transporteur $transporteur;
  169.         return $this;
  170.     }
  171.     public function getPoliceNumber(): ?string
  172.     {
  173.         return $this->policeNumber;
  174.     }
  175.     public function setPoliceNumber(?string $policeNumber): self
  176.     {
  177.         $this->policeNumber $policeNumber;
  178.         return $this;
  179.     }
  180. }