src/Entity/Vehicle.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\TimestampableTrait;
  4. use App\Repository\VehicleRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Symfony\Component\Validator\Constraints as Assert;
  9. /**
  10.  * @ORM\Entity(repositoryClass=VehicleRepository::class)
  11.  */
  12. class Vehicle
  13. {
  14.     use TimestampableTrait;
  15.     
  16.     /**
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue
  19.      * @ORM\Column(type="integer")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @ORM\ManyToOne(targetEntity=Transporteur::class, inversedBy="vehicles")
  24.      * @ORM\JoinColumn(nullable=false)
  25.      */
  26.     private $transporteur;
  27.     /**
  28.      * @ORM\Column(type="string", length=255, nullable=true)
  29.      */
  30.     private $registrationNumber;
  31.     /**
  32.      * @ORM\Column(type="datetime", nullable=true)
  33.      */
  34.     private $registrationDate;
  35.     /**
  36.      * @ORM\Column(type="string", length=255, nullable=true)
  37.      */
  38.     private $co2Emmissions;
  39.     /**
  40.      * @ORM\Column(type="string", length=255, nullable=true)
  41.      */
  42.     private $commercialName;
  43.     /**
  44.      * @ORM\Column(type="string", length=255, nullable=true)
  45.      */
  46.     private $environmentalClass;
  47.     /**
  48.      * @ORM\Column(type="string", length=255, nullable=true)
  49.      */
  50.     private $latestKm;
  51.     /**
  52.      * @ORM\Column(type="string", length=255, nullable=true)
  53.      */
  54.     private $color;
  55.     /**
  56.      * @ORM\Column(type="string", length=255, nullable=true)
  57.      */
  58.     private $acquisition;
  59.     /**
  60.      * @ORM\Column(type="string", length=255, nullable=true)
  61.      */
  62.     private $parkNumber;
  63.     /**
  64.      * @ORM\ManyToOne(targetEntity=Park::class, inversedBy="vehicles")
  65.      * @ORM\JoinColumn(nullable=true)
  66.      */
  67.     private $park;
  68.     /**
  69.      * @ORM\ManyToOne(targetEntity=Brand::class, inversedBy="vehicles")
  70.      * @ORM\JoinColumn(nullable=true)
  71.      */
  72.     private $brand;
  73.     /**
  74.      * @ORM\ManyToOne(targetEntity=VehicleType::class, inversedBy="vehicles")
  75.      * @ORM\JoinColumn(nullable=true)
  76.      */
  77.     private $type;
  78.     /**
  79.      * @ORM\ManyToOne(targetEntity=VehicleGroup::class, inversedBy="vehicles")
  80.      * @ORM\JoinColumn(nullable=true)
  81.      */
  82.     private $vehicleGroup;
  83.     /**
  84.      * @ORM\Column(type="string", length=255, nullable=true)
  85.      */
  86.     private $image;
  87.     /**
  88.      * @Assert\Image(maxSize="2M")
  89.      */
  90.     private $file;
  91.     /**
  92.      * @ORM\Column(type="string", length=255, nullable=true)
  93.      */
  94.     private $cgTvv;
  95.     /**
  96.      * @ORM\Column(type="string", length=255, nullable=true)
  97.      */
  98.     private $cgCnit;
  99.     /**
  100.      * @ORM\Column(type="string", length=255, nullable=true)
  101.      */
  102.     private $cgVin;
  103.     /**
  104.      * @ORM\Column(type="string", length=255, nullable=true)
  105.      */
  106.     private $cgPtac;
  107.     /**
  108.      * @ORM\Column(type="string", length=255, nullable=true)
  109.      */
  110.     private $cgMaximumCharge;
  111.     /**
  112.      * @ORM\Column(type="string", length=255, nullable=true)
  113.      */
  114.     private $cgPtra;
  115.     /**
  116.      * @ORM\Column(type="string", length=255, nullable=true)
  117.      */
  118.     private $cgVehicleMass;
  119.     /**
  120.      * @ORM\Column(type="string", length=255, nullable=true)
  121.      */
  122.     private $cgPoidsVide;
  123.     /**
  124.      * @ORM\Column(type="datetime", nullable=true)
  125.      */
  126.     private $cgCertificateDate;
  127.     /**
  128.      * @ORM\Column(type="string", length=255, nullable=true)
  129.      */
  130.     private $cgVehicleCategory;
  131.     /**
  132.      * @ORM\Column(type="string", length=255, nullable=true)
  133.      */
  134.     private $cgVp;
  135.     /**
  136.      * @ORM\Column(type="string", length=255, nullable=true)
  137.      */
  138.     private $cgBodyCode;
  139.     /**
  140.      * @ORM\Column(type="string", length=255, nullable=true)
  141.      */
  142.     private $cgBodyDesignation;
  143.     /**
  144.      * @ORM\Column(type="string", length=255, nullable=true)
  145.      */
  146.     private $cgTan;
  147.     /**
  148.      * @ORM\Column(type="string", length=255, nullable=true)
  149.      */
  150.     private $cgDisplacement;
  151.     /**
  152.      * @ORM\Column(type="string", length=255, nullable=true)
  153.      */
  154.     private $cgPowerMax;
  155.     /**
  156.      * @ORM\Column(type="string", length=255, nullable=true)
  157.      */
  158.     private $cgEnergy;
  159.     /**
  160.      * @ORM\Column(type="string", length=255, nullable=true)
  161.      */
  162.     private $cgNap;
  163.     /**
  164.      * @ORM\Column(type="string", length=255, nullable=true)
  165.      */
  166.     private $cgVitesseMax;
  167.     /**
  168.      * @ORM\Column(type="string", length=255, nullable=true)
  169.      */
  170.     private $cgPlaceNumber;
  171.     /**
  172.      * @ORM\Column(type="string", length=255, nullable=true)
  173.      */
  174.     private $sgStandingPlaceNumber;
  175.     /**
  176.      * @ORM\Column(type="string", length=255, nullable=true)
  177.      */
  178.     private $sgNiveauSonor;
  179.     /**
  180.      * @ORM\Column(type="string", length=255, nullable=true)
  181.      */
  182.     private $sgEngineSpeed;
  183.     /**
  184.      * @ORM\Column(type="string", length=255, nullable=true)
  185.      */
  186.     private $tcLength;
  187.     /**
  188.      * @ORM\Column(type="string", length=255, nullable=true)
  189.      */
  190.     private $tcWidth;
  191.     /**
  192.      * @ORM\Column(type="string", length=255, nullable=true)
  193.      */
  194.     private $tcHeight;
  195.     /**
  196.      * @ORM\Column(type="string", length=255, nullable=true)
  197.      */
  198.     private $tcTankCapacity;
  199.     /**
  200.      * @ORM\Column(type="string", length=255, nullable=true)
  201.      */
  202.     private $tcUrbanConsumption;
  203.     /**
  204.      * @ORM\Column(type="string", length=255, nullable=true)
  205.      */
  206.     private $tcExtraUrbanConsumption;
  207.     /**
  208.      * @ORM\Column(type="string", length=255, nullable=true)
  209.      */
  210.     private $tcAutorouteConsumption;
  211.     /**
  212.      * @ORM\Column(type="boolean", nullable=true)
  213.      */
  214.     private $ovGps;
  215.     /**
  216.      * @ORM\Column(type="boolean", nullable=true)
  217.      */
  218.     private $ovMusic;
  219.     /**
  220.      * @ORM\Column(type="boolean", nullable=true)
  221.      */
  222.     private $ovClimatisation;
  223.     
  224.     /**
  225.      * @ORM\Column(type="boolean", nullable=true)
  226.      */
  227.     private $ovPanoramicRoof;
  228.     /**
  229.      * @ORM\Column(type="boolean", nullable=true)
  230.      */
  231.     private $ovToilet;
  232.     /**
  233.      * @ORM\Column(type="boolean", nullable=true)
  234.      */
  235.     private $ovTv;
  236.     /**
  237.      * @ORM\Column(type="boolean", nullable=true)
  238.      */
  239.     private $ovLeatherSeat;
  240.     /**
  241.      * @ORM\Column(type="boolean", nullable=true)
  242.      */
  243.     private $ovReclinerSeat;
  244.     /**
  245.      * @ORM\Column(type="boolean", nullable=true)
  246.      */
  247.     private $ovArmrest;
  248.     /**
  249.      * @ORM\Column(type="boolean", nullable=true)
  250.      */
  251.     private $ovSeatSelf;
  252.     /**
  253.      * @ORM\Column(type="boolean", nullable=true)
  254.      */
  255.     private $ovDesk;
  256.     /**
  257.      * @ORM\Column(type="boolean", nullable=true)
  258.      */
  259.     private $ovCigaretteLighter;
  260.     /**
  261.      * @ORM\Column(type="boolean", nullable=true)
  262.      */
  263.     private $ovPlug220v;
  264.     /**
  265.      * @ORM\Column(type="boolean", nullable=true)
  266.      */
  267.     private $ovPlugUsb;
  268.     /**
  269.      * @ORM\Column(type="boolean", nullable=true)
  270.      */
  271.     private $ovWaterBottle;
  272.     /**
  273.      * @ORM\Column(type="boolean", nullable=true)
  274.      */
  275.     private $ovFrigo;
  276.     /**
  277.      * @ORM\Column(type="boolean", nullable=true)
  278.      */
  279.     private $ovCoffeeMachine;
  280.     /**
  281.      * @ORM\Column(type="boolean", nullable=true)
  282.      */
  283.     private $ovKichenette;
  284.     /**
  285.      * @ORM\Column(type="boolean", nullable=true)
  286.      */
  287.     private $ovBandingTrailer;
  288.     /**
  289.      * @ORM\Column(type="boolean", nullable=true)
  290.      */
  291.     private $ovBoxMotorBanding;
  292.     /**
  293.      * @ORM\Column(type="boolean", nullable=true)
  294.      */
  295.     private $ovMaxiBunkerBanding;
  296.     /**
  297.      * @ORM\OneToMany(targetEntity=Acquisition::class, mappedBy="vehicle", cascade={"remove"})
  298.      */
  299.     private $acquisitions;
  300.     /**
  301.      * @ORM\OneToMany(targetEntity=Assurance::class, mappedBy="vehicle", cascade={"remove"})
  302.      */
  303.     private $assurances;
  304.     /**
  305.      * @ORM\Column(type="string", length=255, nullable=true)
  306.      */
  307.     private $code;
  308.     /**
  309.      * @ORM\Column(type="boolean")
  310.      */
  311.     private $archive false;
  312.     /**
  313.      * @ORM\OneToMany(targetEntity=ControleTechnique::class, mappedBy="vehicle", cascade={"remove"})
  314.      */
  315.     private $controleTechniques;
  316.     /**
  317.      * @ORM\OneToMany(targetEntity=ControleTachygraphe::class, mappedBy="vehicle", cascade={"remove"})
  318.      */
  319.     private $controleTachygraphes;
  320.     /**
  321.      * @ORM\OneToMany(targetEntity=ControleLimiteurVitesse::class, mappedBy="vehicle", cascade={"remove"})
  322.      */
  323.     private $controleLimiteurVitesses;
  324.     /**
  325.      * @ORM\OneToMany(targetEntity=DocumentDriver::class, mappedBy="vehicle", cascade={"remove"})
  326.      */
  327.     private $documentDrivers;
  328.     /**
  329.      * @ORM\OneToMany(targetEntity=Carburant::class, mappedBy="vehicle", cascade={"remove"})
  330.      */
  331.     private $carburants;
  332.     public function __construct()
  333.     {
  334.         $this->acquisitions = new ArrayCollection();
  335.         $this->assurances = new ArrayCollection();
  336.         $this->controleTechniques = new ArrayCollection();
  337.         $this->controleTachygraphes = new ArrayCollection();
  338.         $this->controleLimiteurVitesses = new ArrayCollection();
  339.         $this->documentDrivers = new ArrayCollection();
  340.         $this->carburants = new ArrayCollection();
  341.     }
  342.     public function getId(): ?int
  343.     {
  344.         return $this->id;
  345.     }
  346.     public function getTransporteur(): ?Transporteur
  347.     {
  348.         return $this->transporteur;
  349.     }
  350.     public function setTransporteur(?Transporteur $transporteur): self
  351.     {
  352.         $this->transporteur $transporteur;
  353.         return $this;
  354.     }
  355.     public function getRegistrationNumber(): ?string
  356.     {
  357.         return $this->registrationNumber;
  358.     }
  359.     public function setRegistrationNumber(?string $registrationNumber): self
  360.     {
  361.         $this->registrationNumber $registrationNumber;
  362.         return $this;
  363.     }
  364.     public function getRegistrationDate(): ?\DateTimeInterface
  365.     {
  366.         return $this->registrationDate;
  367.     }
  368.     public function setRegistrationDate(?\DateTimeInterface $registrationDate): self
  369.     {
  370.         $this->registrationDate $registrationDate;
  371.         return $this;
  372.     }
  373.     public function getCo2Emmissions(): ?string
  374.     {
  375.         return $this->co2Emmissions;
  376.     }
  377.     public function setCo2Emmissions(?string $co2Emmissions): self
  378.     {
  379.         $this->co2Emmissions $co2Emmissions;
  380.         return $this;
  381.     }
  382.     public function getCommercialName(): ?string
  383.     {
  384.         return $this->commercialName;
  385.     }
  386.     public function setCommercialName(?string $commercialName): self
  387.     {
  388.         $this->commercialName $commercialName;
  389.         return $this;
  390.     }
  391.     public function getEnvironmentalClass(): ?string
  392.     {
  393.         return $this->environmentalClass;
  394.     }
  395.     public function setEnvironmentalClass(?string $environmentalClass): self
  396.     {
  397.         $this->environmentalClass $environmentalClass;
  398.         return $this;
  399.     }
  400.     public function getLatestKm(): ?string
  401.     {
  402.         return $this->latestKm;
  403.     }
  404.     public function setLatestKm(?string $latestKm): self
  405.     {
  406.         $this->latestKm $latestKm;
  407.         return $this;
  408.     }
  409.     public function getColor(): ?string
  410.     {
  411.         return $this->color;
  412.     }
  413.     public function setColor(?string $color): self
  414.     {
  415.         $this->color $color;
  416.         return $this;
  417.     }
  418.     public function getAcquisition(): ?string
  419.     {
  420.         return $this->acquisition;
  421.     }
  422.     public function setAcquisition(?string $acquisition): self
  423.     {
  424.         $this->acquisition $acquisition;
  425.         return $this;
  426.     }
  427.     public function getParkNumber(): ?string
  428.     {
  429.         return $this->parkNumber;
  430.     }
  431.     public function setParkNumber(?string $parkNumber): self
  432.     {
  433.         $this->parkNumber $parkNumber;
  434.         return $this;
  435.     }
  436.     public function getImage(): ?string
  437.     {
  438.         return $this->image;
  439.     }
  440.     public function setImage(?string $image): self
  441.     {
  442.         $this->image $image;
  443.         return $this;
  444.     }
  445.     public function getFile()
  446.     {
  447.         return $this->file;
  448.     }
  449.     public function setFile($file)
  450.     {
  451.         $this->file $file;
  452.         return $this;
  453.     }
  454.     public function getPark(): ?Park
  455.     {
  456.         return $this->park;
  457.     }
  458.     public function setPark(?Park $park): self
  459.     {
  460.         $this->park $park;
  461.         return $this;
  462.     }
  463.     public function getBrand(): ?Brand
  464.     {
  465.         return $this->brand;
  466.     }
  467.     public function setBrand(?Brand $brand): self
  468.     {
  469.         $this->brand $brand;
  470.         return $this;
  471.     }
  472.     public function getType(): ?VehicleType
  473.     {
  474.         return $this->type;
  475.     }
  476.     public function setType(?VehicleType $type): self
  477.     {
  478.         $this->type $type;
  479.         return $this;
  480.     }
  481.     public function getVehicleGroup(): ?VehicleGroup
  482.     {
  483.         return $this->vehicleGroup;
  484.     }
  485.     public function setVehicleGroup(?VehicleGroup $vehicleGroup): self
  486.     {
  487.         $this->vehicleGroup $vehicleGroup;
  488.         return $this;
  489.     }
  490.     public function getCgTvv(): ?string
  491.     {
  492.         return $this->cgTvv;
  493.     }
  494.     public function setCgTvv(?string $cgTvv): self
  495.     {
  496.         $this->cgTvv $cgTvv;
  497.         return $this;
  498.     }
  499.     public function getCgCnit(): ?string
  500.     {
  501.         return $this->cgCnit;
  502.     }
  503.     public function setCgCnit(?string $cgCnit): self
  504.     {
  505.         $this->cgCnit $cgCnit;
  506.         return $this;
  507.     }
  508.     public function getCgVin(): ?string
  509.     {
  510.         return $this->cgVin;
  511.     }
  512.     public function setCgVin(?string $cgVin): self
  513.     {
  514.         $this->cgVin $cgVin;
  515.         return $this;
  516.     }
  517.     public function getCgPtac(): ?string
  518.     {
  519.         return $this->cgPtac;
  520.     }
  521.     public function setCgPtac(?string $cgPtac): self
  522.     {
  523.         $this->cgPtac $cgPtac;
  524.         return $this;
  525.     }
  526.     public function getCgMaximumCharge(): ?string
  527.     {
  528.         return $this->cgMaximumCharge;
  529.     }
  530.     public function setCgMaximumCharge(?string $cgMaximumCharge): self
  531.     {
  532.         $this->cgMaximumCharge $cgMaximumCharge;
  533.         return $this;
  534.     }
  535.     public function getCgPtra(): ?string
  536.     {
  537.         return $this->cgPtra;
  538.     }
  539.     public function setCgPtra(?string $cgPtra): self
  540.     {
  541.         $this->cgPtra $cgPtra;
  542.         return $this;
  543.     }
  544.     public function getCgVehicleMass(): ?string
  545.     {
  546.         return $this->cgVehicleMass;
  547.     }
  548.     public function setCgVehicleMass(?string $cgVehicleMass): self
  549.     {
  550.         $this->cgVehicleMass $cgVehicleMass;
  551.         return $this;
  552.     }
  553.     public function getCgPoidsVide(): ?string
  554.     {
  555.         return $this->cgPoidsVide;
  556.     }
  557.     public function setCgPoidsVide(?string $cgPoidsVide): self
  558.     {
  559.         $this->cgPoidsVide $cgPoidsVide;
  560.         return $this;
  561.     }
  562.     public function getCgCertificateDate(): ?\DateTimeInterface
  563.     {
  564.         return $this->cgCertificateDate;
  565.     }
  566.     public function setCgCertificateDate(?\DateTimeInterface $cgCertificateDate): self
  567.     {
  568.         $this->cgCertificateDate $cgCertificateDate;
  569.         return $this;
  570.     }
  571.     public function getCgVehicleCategory(): ?string
  572.     {
  573.         return $this->cgVehicleCategory;
  574.     }
  575.     public function setCgVehicleCategory(?string $cgVehicleCategory): self
  576.     {
  577.         $this->cgVehicleCategory $cgVehicleCategory;
  578.         return $this;
  579.     }
  580.     public function getCgVp(): ?string
  581.     {
  582.         return $this->cgVp;
  583.     }
  584.     public function setCgVp(?string $cgVp): self
  585.     {
  586.         $this->cgVp $cgVp;
  587.         return $this;
  588.     }
  589.     public function getCgBodyCode(): ?string
  590.     {
  591.         return $this->cgBodyCode;
  592.     }
  593.     public function setCgBodyCode(?string $cgBodyCode): self
  594.     {
  595.         $this->cgBodyCode $cgBodyCode;
  596.         return $this;
  597.     }
  598.     public function getCgBodyDesignation(): ?string
  599.     {
  600.         return $this->cgBodyDesignation;
  601.     }
  602.     public function setCgBodyDesignation(?string $cgBodyDesignation): self
  603.     {
  604.         $this->cgBodyDesignation $cgBodyDesignation;
  605.         return $this;
  606.     }
  607.     public function getCgTan(): ?string
  608.     {
  609.         return $this->cgTan;
  610.     }
  611.     public function setCgTan(?string $cgTan): self
  612.     {
  613.         $this->cgTan $cgTan;
  614.         return $this;
  615.     }
  616.     public function getCgDisplacement(): ?string
  617.     {
  618.         return $this->cgDisplacement;
  619.     }
  620.     public function setCgDisplacement(?string $cgDisplacement): self
  621.     {
  622.         $this->cgDisplacement $cgDisplacement;
  623.         return $this;
  624.     }
  625.     public function getCgPowerMax(): ?string
  626.     {
  627.         return $this->cgPowerMax;
  628.     }
  629.     public function setCgPowerMax(?string $cgPowerMax): self
  630.     {
  631.         $this->cgPowerMax $cgPowerMax;
  632.         return $this;
  633.     }
  634.     public function getCgEnergy(): ?string
  635.     {
  636.         return $this->cgEnergy;
  637.     }
  638.     public function setCgEnergy(?string $cgEnergy): self
  639.     {
  640.         $this->cgEnergy $cgEnergy;
  641.         return $this;
  642.     }
  643.     public function getCgNap(): ?string
  644.     {
  645.         return $this->cgNap;
  646.     }
  647.     public function setCgNap(?string $cgNap): self
  648.     {
  649.         $this->cgNap $cgNap;
  650.         return $this;
  651.     }
  652.     public function getCgVitesseMax(): ?string
  653.     {
  654.         return $this->cgVitesseMax;
  655.     }
  656.     public function setCgVitesseMax(?string $cgVitesseMax): self
  657.     {
  658.         $this->cgVitesseMax $cgVitesseMax;
  659.         return $this;
  660.     }
  661.     public function getCgPlaceNumber(): ?string
  662.     {
  663.         return $this->cgPlaceNumber;
  664.     }
  665.     public function setCgPlaceNumber(?string $cgPlaceNumber): self
  666.     {
  667.         $this->cgPlaceNumber $cgPlaceNumber;
  668.         return $this;
  669.     }
  670.     public function getSgStandingPlaceNumber(): ?string
  671.     {
  672.         return $this->sgStandingPlaceNumber;
  673.     }
  674.     public function setSgStandingPlaceNumber(?string $sgStandingPlaceNumber): self
  675.     {
  676.         $this->sgStandingPlaceNumber $sgStandingPlaceNumber;
  677.         return $this;
  678.     }
  679.     public function getSgNiveauSonor(): ?string
  680.     {
  681.         return $this->sgNiveauSonor;
  682.     }
  683.     public function setSgNiveauSonor(?string $sgNiveauSonor): self
  684.     {
  685.         $this->sgNiveauSonor $sgNiveauSonor;
  686.         return $this;
  687.     }
  688.     public function getSgEngineSpeed(): ?string
  689.     {
  690.         return $this->sgEngineSpeed;
  691.     }
  692.     public function setSgEngineSpeed(?string $sgEngineSpeed): self
  693.     {
  694.         $this->sgEngineSpeed $sgEngineSpeed;
  695.         return $this;
  696.     }
  697.     public function getTcLength(): ?string
  698.     {
  699.         return $this->tcLength;
  700.     }
  701.     public function setTcLength(?string $tcLength): self
  702.     {
  703.         $this->tcLength $tcLength;
  704.         return $this;
  705.     }
  706.     public function getTcWidth(): ?string
  707.     {
  708.         return $this->tcWidth;
  709.     }
  710.     public function setTcWidth(?string $tcWidth): self
  711.     {
  712.         $this->tcWidth $tcWidth;
  713.         return $this;
  714.     }
  715.     public function getTcHeight(): ?string
  716.     {
  717.         return $this->tcHeight;
  718.     }
  719.     public function setTcHeight(?string $tcHeight): self
  720.     {
  721.         $this->tcHeight $tcHeight;
  722.         return $this;
  723.     }
  724.     public function getTcTankCapacity(): ?string
  725.     {
  726.         return $this->tcTankCapacity;
  727.     }
  728.     public function setTcTankCapacity(?string $tcTankCapacity): self
  729.     {
  730.         $this->tcTankCapacity $tcTankCapacity;
  731.         return $this;
  732.     }
  733.     public function getTcUrbanConsumption(): ?string
  734.     {
  735.         return $this->tcUrbanConsumption;
  736.     }
  737.     public function setTcUrbanConsumption(?string $tcUrbanConsumption): self
  738.     {
  739.         $this->tcUrbanConsumption $tcUrbanConsumption;
  740.         return $this;
  741.     }
  742.     public function getTcExtraUrbanConsumption(): ?string
  743.     {
  744.         return $this->tcExtraUrbanConsumption;
  745.     }
  746.     public function setTcExtraUrbanConsumption(?string $tcExtraUrbanConsumption): self
  747.     {
  748.         $this->tcExtraUrbanConsumption $tcExtraUrbanConsumption;
  749.         return $this;
  750.     }
  751.     public function getTcAutorouteConsumption(): ?string
  752.     {
  753.         return $this->tcAutorouteConsumption;
  754.     }
  755.     public function setTcAutorouteConsumption(?string $tcAutorouteConsumption): self
  756.     {
  757.         $this->tcAutorouteConsumption $tcAutorouteConsumption;
  758.         return $this;
  759.     }
  760.     public function isOvGps(): ?bool
  761.     {
  762.         return $this->ovGps;
  763.     }
  764.     public function setOvGps(?bool $ovGps): self
  765.     {
  766.         $this->ovGps $ovGps;
  767.         return $this;
  768.     }
  769.     public function isOvMusic(): ?bool
  770.     {
  771.         return $this->ovMusic;
  772.     }
  773.     public function setOvMusic(?bool $ovMusic): self
  774.     {
  775.         $this->ovMusic $ovMusic;
  776.         return $this;
  777.     }
  778.     public function isOvClimatisation(): ?bool
  779.     {
  780.         return $this->ovClimatisation;
  781.     }
  782.     public function setOvClimatisation(?bool $ovClimatisation): self
  783.     {
  784.         $this->ovClimatisation $ovClimatisation;
  785.         return $this;
  786.     }
  787.     public function isOvPanoramicRoof(): ?bool
  788.     {
  789.         return $this->ovPanoramicRoof;
  790.     }
  791.     public function setOvPanoramicRoof(?bool $ovPanoramicRoof): self
  792.     {
  793.         $this->ovPanoramicRoof $ovPanoramicRoof;
  794.         return $this;
  795.     }
  796.     public function isOvToilet(): ?bool
  797.     {
  798.         return $this->ovToilet;
  799.     }
  800.     public function setOvToilet(?bool $ovToilet): self
  801.     {
  802.         $this->ovToilet $ovToilet;
  803.         return $this;
  804.     }
  805.     public function isOvTv(): ?bool
  806.     {
  807.         return $this->ovTv;
  808.     }
  809.     public function setOvTv(?bool $ovTv): self
  810.     {
  811.         $this->ovTv $ovTv;
  812.         return $this;
  813.     }
  814.     public function isOvLeatherSeat(): ?bool
  815.     {
  816.         return $this->ovLeatherSeat;
  817.     }
  818.     public function setOvLeatherSeat(?bool $ovLeatherSeat): self
  819.     {
  820.         $this->ovLeatherSeat $ovLeatherSeat;
  821.         return $this;
  822.     }
  823.     public function isOvReclinerSeat(): ?bool
  824.     {
  825.         return $this->ovReclinerSeat;
  826.     }
  827.     public function setOvReclinerSeat(?bool $ovReclinerSeat): self
  828.     {
  829.         $this->ovReclinerSeat $ovReclinerSeat;
  830.         return $this;
  831.     }
  832.     public function isOvArmrest(): ?bool
  833.     {
  834.         return $this->ovArmrest;
  835.     }
  836.     public function setOvArmrest(?bool $ovArmrest): self
  837.     {
  838.         $this->ovArmrest $ovArmrest;
  839.         return $this;
  840.     }
  841.     public function isOvSeatSelf(): ?bool
  842.     {
  843.         return $this->ovSeatSelf;
  844.     }
  845.     public function setOvSeatSelf(?bool $ovSeatSelf): self
  846.     {
  847.         $this->ovSeatSelf $ovSeatSelf;
  848.         return $this;
  849.     }
  850.     public function isOvDesk(): ?bool
  851.     {
  852.         return $this->ovDesk;
  853.     }
  854.     public function setOvDesk(?bool $ovDesk): self
  855.     {
  856.         $this->ovDesk $ovDesk;
  857.         return $this;
  858.     }
  859.     public function isOvCigaretteLighter(): ?bool
  860.     {
  861.         return $this->ovCigaretteLighter;
  862.     }
  863.     public function setOvCigaretteLighter(?bool $ovCigaretteLighter): self
  864.     {
  865.         $this->ovCigaretteLighter $ovCigaretteLighter;
  866.         return $this;
  867.     }
  868.     public function isOvPlug220v(): ?bool
  869.     {
  870.         return $this->ovPlug220v;
  871.     }
  872.     public function setOvPlug220v(?bool $ovPlug220v): self
  873.     {
  874.         $this->ovPlug220v $ovPlug220v;
  875.         return $this;
  876.     }
  877.     public function isOvPlugUsb(): ?bool
  878.     {
  879.         return $this->ovPlugUsb;
  880.     }
  881.     public function setOvPlugUsb(?bool $ovPlugUsb): self
  882.     {
  883.         $this->ovPlugUsb $ovPlugUsb;
  884.         return $this;
  885.     }
  886.     public function isOvWaterBottle(): ?bool
  887.     {
  888.         return $this->ovWaterBottle;
  889.     }
  890.     public function setOvWaterBottle(?bool $ovWaterBottle): self
  891.     {
  892.         $this->ovWaterBottle $ovWaterBottle;
  893.         return $this;
  894.     }
  895.     public function isOvFrigo(): ?bool
  896.     {
  897.         return $this->ovFrigo;
  898.     }
  899.     public function setOvFrigo(?bool $ovFrigo): self
  900.     {
  901.         $this->ovFrigo $ovFrigo;
  902.         return $this;
  903.     }
  904.     public function isOvCoffeeMachine(): ?bool
  905.     {
  906.         return $this->ovCoffeeMachine;
  907.     }
  908.     public function setOvCoffeeMachine(?bool $ovCoffeeMachine): self
  909.     {
  910.         $this->ovCoffeeMachine $ovCoffeeMachine;
  911.         return $this;
  912.     }
  913.     public function isOvKichenette(): ?bool
  914.     {
  915.         return $this->ovKichenette;
  916.     }
  917.     public function setOvKichenette(?bool $ovKichenette): self
  918.     {
  919.         $this->ovKichenette $ovKichenette;
  920.         return $this;
  921.     }
  922.     public function isOvBandingTrailer(): ?bool
  923.     {
  924.         return $this->ovBandingTrailer;
  925.     }
  926.     public function setOvBandingTrailer(?bool $ovBandingTrailer): self
  927.     {
  928.         $this->ovBandingTrailer $ovBandingTrailer;
  929.         return $this;
  930.     }
  931.     public function isOvBoxMotorBanding(): ?bool
  932.     {
  933.         return $this->ovBoxMotorBanding;
  934.     }
  935.     public function setOvBoxMotorBanding(?bool $ovBoxMotorBanding): self
  936.     {
  937.         $this->ovBoxMotorBanding $ovBoxMotorBanding;
  938.         return $this;
  939.     }
  940.     public function isOvMaxiBunkerBanding(): ?bool
  941.     {
  942.         return $this->ovMaxiBunkerBanding;
  943.     }
  944.     public function setOvMaxiBunkerBanding(?bool $ovMaxiBunkerBanding): self
  945.     {
  946.         $this->ovMaxiBunkerBanding $ovMaxiBunkerBanding;
  947.         return $this;
  948.     }
  949.     /**
  950.      * @return Collection<int, Acquisition>
  951.      */
  952.     public function getAcquisitions(): Collection
  953.     {
  954.         return $this->acquisitions;
  955.     }
  956.     public function addAcquisition(Acquisition $acquisition): self
  957.     {
  958.         if (!$this->acquisitions->contains($acquisition)) {
  959.             $this->acquisitions[] = $acquisition;
  960.             $acquisition->setVehicle($this);
  961.         }
  962.         return $this;
  963.     }
  964.     public function removeAcquisition(Acquisition $acquisition): self
  965.     {
  966.         if ($this->acquisitions->removeElement($acquisition)) {
  967.             // set the owning side to null (unless already changed)
  968.             if ($acquisition->getVehicle() === $this) {
  969.                 $acquisition->setVehicle(null);
  970.             }
  971.         }
  972.         return $this;
  973.     }
  974.     /**
  975.      * @return Collection<int, Assurance>
  976.      */
  977.     public function getAssurances(): Collection
  978.     {
  979.         return $this->assurances;
  980.     }
  981.     public function addAssurance(Assurance $assurance): self
  982.     {
  983.         if (!$this->assurances->contains($assurance)) {
  984.             $this->assurances[] = $assurance;
  985.             $assurance->setVehicle($this);
  986.         }
  987.         return $this;
  988.     }
  989.     public function removeAssurance(Assurance $assurance): self
  990.     {
  991.         if ($this->assurances->removeElement($assurance)) {
  992.             // set the owning side to null (unless already changed)
  993.             if ($assurance->getVehicle() === $this) {
  994.                 $assurance->setVehicle(null);
  995.             }
  996.         }
  997.         return $this;
  998.     }
  999.     public function getCode(): ?string
  1000.     {
  1001.         return $this->code;
  1002.     }
  1003.     public function setCode(?string $code): self
  1004.     {
  1005.         $this->code $code;
  1006.         return $this;
  1007.     }
  1008.     public function isArchive(): ?bool
  1009.     {
  1010.         return $this->archive;
  1011.     }
  1012.     public function setArchive(bool $archive): self
  1013.     {
  1014.         $this->archive $archive;
  1015.         return $this;
  1016.     }
  1017.     /**
  1018.      * @return Collection<int, ControleTechnique>
  1019.      */
  1020.     public function getControleTechniques(): Collection
  1021.     {
  1022.         return $this->controleTechniques;
  1023.     }
  1024.     public function addControleTechnique(ControleTechnique $controleTechnique): self
  1025.     {
  1026.         if (!$this->controleTechniques->contains($controleTechnique)) {
  1027.             $this->controleTechniques[] = $controleTechnique;
  1028.             $controleTechnique->setVehicle($this);
  1029.         }
  1030.         return $this;
  1031.     }
  1032.     public function removeControleTechnique(ControleTechnique $controleTechnique): self
  1033.     {
  1034.         if ($this->controleTechniques->removeElement($controleTechnique)) {
  1035.             // set the owning side to null (unless already changed)
  1036.             if ($controleTechnique->getVehicle() === $this) {
  1037.                 $controleTechnique->setVehicle(null);
  1038.             }
  1039.         }
  1040.         return $this;
  1041.     }
  1042.     /**
  1043.      * @return Collection<int, ControleTachygraphe>
  1044.      */
  1045.     public function getControleTachygraphes(): Collection
  1046.     {
  1047.         return $this->controleTachygraphes;
  1048.     }
  1049.     public function addControleTachygraphe(ControleTachygraphe $controleTachygraphe): self
  1050.     {
  1051.         if (!$this->controleTachygraphes->contains($controleTachygraphe)) {
  1052.             $this->controleTachygraphes[] = $controleTachygraphe;
  1053.             $controleTachygraphe->setVehicle($this);
  1054.         }
  1055.         return $this;
  1056.     }
  1057.     public function removeControleTachygraphe(ControleTachygraphe $controleTachygraphe): self
  1058.     {
  1059.         if ($this->controleTachygraphes->removeElement($controleTachygraphe)) {
  1060.             // set the owning side to null (unless already changed)
  1061.             if ($controleTachygraphe->getVehicle() === $this) {
  1062.                 $controleTachygraphe->setVehicle(null);
  1063.             }
  1064.         }
  1065.         return $this;
  1066.     }
  1067.     /**
  1068.      * @return Collection<int, ControleLimiteurVitesse>
  1069.      */
  1070.     public function getControleLimiteurVitesses(): Collection
  1071.     {
  1072.         return $this->controleLimiteurVitesses;
  1073.     }
  1074.     public function addControleLimiteurVitess(ControleLimiteurVitesse $controleLimiteurVitess): self
  1075.     {
  1076.         if (!$this->controleLimiteurVitesses->contains($controleLimiteurVitess)) {
  1077.             $this->controleLimiteurVitesses[] = $controleLimiteurVitess;
  1078.             $controleLimiteurVitess->setVehicle($this);
  1079.         }
  1080.         return $this;
  1081.     }
  1082.     public function removeControleLimiteurVitess(ControleLimiteurVitesse $controleLimiteurVitess): self
  1083.     {
  1084.         if ($this->controleLimiteurVitesses->removeElement($controleLimiteurVitess)) {
  1085.             // set the owning side to null (unless already changed)
  1086.             if ($controleLimiteurVitess->getVehicle() === $this) {
  1087.                 $controleLimiteurVitess->setVehicle(null);
  1088.             }
  1089.         }
  1090.         return $this;
  1091.     }
  1092.     /**
  1093.      * @return Collection<int, DocumentDriver>
  1094.      */
  1095.     public function getDocumentDrivers(): Collection
  1096.     {
  1097.         return $this->documentDrivers;
  1098.     }
  1099.     public function addDocumentDriver(DocumentDriver $documentDriver): self
  1100.     {
  1101.         if (!$this->documentDrivers->contains($documentDriver)) {
  1102.             $this->documentDrivers[] = $documentDriver;
  1103.             $documentDriver->setVehicle($this);
  1104.         }
  1105.         return $this;
  1106.     }
  1107.     public function removeDocumentDriver(DocumentDriver $documentDriver): self
  1108.     {
  1109.         if ($this->documentDrivers->removeElement($documentDriver)) {
  1110.             // set the owning side to null (unless already changed)
  1111.             if ($documentDriver->getVehicle() === $this) {
  1112.                 $documentDriver->setVehicle(null);
  1113.             }
  1114.         }
  1115.         return $this;
  1116.     }
  1117.     /**
  1118.      * @return Collection<int, Carburant>
  1119.      */
  1120.     public function getCarburants(): Collection
  1121.     {
  1122.         return $this->carburants;
  1123.     }
  1124.     public function addCarburant(Carburant $carburant): self
  1125.     {
  1126.         if (!$this->carburants->contains($carburant)) {
  1127.             $this->carburants[] = $carburant;
  1128.             $carburant->setVehicle($this);
  1129.         }
  1130.         return $this;
  1131.     }
  1132.     public function removeCarburant(Carburant $carburant): self
  1133.     {
  1134.         if ($this->carburants->removeElement($carburant)) {
  1135.             // set the owning side to null (unless already changed)
  1136.             if ($carburant->getVehicle() === $this) {
  1137.                 $carburant->setVehicle(null);
  1138.             }
  1139.         }
  1140.         return $this;
  1141.     }
  1142. }