src/Entity/RendezVousInfos.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RendezVousInfosRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * @ORM\Entity(repositoryClass=RendezVousInfosRepository::class)
  8.  */
  9. class RendezVousInfos
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\GeneratedValue
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(type="string", length=8, nullable=true)
  19.      */
  20.     private $rdv_inf_pv;
  21.     /**
  22.      * @ORM\Column(type="string", length=13, nullable=true)
  23.      */
  24.     private $rdv_inf_facture;
  25.     /**
  26.      * @ORM\Column(type="string", length=2, nullable=true)
  27.      */
  28.     private $rdv_inf_resultat;
  29.     /**
  30.      * @ORM\Column(type="date", nullable=true)
  31.      */
  32.     private $rdv_inf_date_ct;
  33.     /**
  34.      * @ORM\Column(type="time", nullable=true)
  35.      */
  36.     private $rdv_inf_hdebut_ct;
  37.     /**
  38.      * @ORM\Column(type="time", nullable=true)
  39.      */
  40.     private $rdv_inf_hfin_ct;
  41.     /**
  42.      * @ORM\ManyToOne(targetEntity=RendezVousVehicule::class, inversedBy="rendezVousInfos", fetch="EAGER")
  43.      * @ORM\JoinColumn(nullable=false)
  44.      */
  45.     private $vehicule;
  46.     /**
  47.      * @ORM\ManyToOne(targetEntity=CentrePrestation::class, inversedBy="rendezVousInfos")
  48.      * @ORM\JoinColumn(nullable=false)
  49.      */
  50.     private $centre_prestation;
  51.     /**
  52.      * @ORM\ManyToOne(targetEntity=Rendezvous::class, inversedBy="rendezVousInfos")
  53.      * @ORM\JoinColumn(nullable=false)
  54.      */
  55.     private $rendezvous;
  56.     /**
  57.      * @ORM\Column(type="boolean")
  58.      */
  59.     private $rdv_inf_depot;
  60.     /**
  61.      * @ORM\Column(type="boolean")
  62.      */
  63.     private $rdv_inf_convoyage;
  64.     /**
  65.      * @ORM\Column(type="boolean")
  66.      */
  67.     private $rdv_inf_pret;
  68.     /**
  69.      * @ORM\Column(type="datetime", nullable=true)
  70.      */
  71.     private $rdv_inf_date_avis_google_sms;
  72.     /**
  73.      * @ORM\Column(type="datetime", nullable=true)
  74.      */
  75.     private $rdv_inf_date_avis_google_email;
  76.     public function getId(): ?int
  77.     {
  78.         return $this->id;
  79.     }
  80.     public function getRdvInfPv(): ?string
  81.     {
  82.         return $this->rdv_inf_pv;
  83.     }
  84.     public function setRdvInfPv(?string $rdv_inf_pv): self
  85.     {
  86.         $this->rdv_inf_pv $rdv_inf_pv;
  87.         return $this;
  88.     }
  89.     public function getRdvInfFacture(): ?string
  90.     {
  91.         return $this->rdv_inf_facture;
  92.     }
  93.     public function setRdvInfFacture(?string $rdv_inf_facture): self
  94.     {
  95.         $this->rdv_inf_facture $rdv_inf_facture;
  96.         return $this;
  97.     }
  98.     public function getRdvInfResultat(): ?string
  99.     {
  100.         return $this->rdv_inf_resultat;
  101.     }
  102.     public function setRdvInfResultat(?string $rdv_inf_resultat): self
  103.     {
  104.         $this->rdv_inf_resultat $rdv_inf_resultat;
  105.         return $this;
  106.     }
  107.     public function getRdvInfDateCt(): ?\DateTimeInterface
  108.     {
  109.         return $this->rdv_inf_date_ct;
  110.     }
  111.     public function setRdvInfDateCt(?\DateTimeInterface $rdv_inf_date_ct): self
  112.     {
  113.         $this->rdv_inf_date_ct $rdv_inf_date_ct;
  114.         return $this;
  115.     }
  116.     public function getRdvInfHdebutCt(): ?\DateTimeInterface
  117.     {
  118.         return $this->rdv_inf_hdebut_ct;
  119.     }
  120.     public function setRdvInfHdebutCt(?\DateTimeInterface $rdv_inf_hdebut_ct): self
  121.     {
  122.         $this->rdv_inf_hdebut_ct $rdv_inf_hdebut_ct;
  123.         return $this;
  124.     }
  125.     public function getRdvInfHfinCt(): ?\DateTimeInterface
  126.     {
  127.         return $this->rdv_inf_hfin_ct;
  128.     }
  129.     public function setRdvInfHfinCt(?\DateTimeInterface $rdv_inf_hfin_ct): self
  130.     {
  131.         $this->rdv_inf_hfin_ct $rdv_inf_hfin_ct;
  132.         return $this;
  133.     }
  134.     public function getVehicule(): ?RendezVousVehicule
  135.     {
  136.         return $this->vehicule;
  137.     }
  138.     public function setVehicule(?RendezVousVehicule $vehicule): self
  139.     {
  140.         $this->vehicule $vehicule;
  141.         return $this;
  142.     }
  143.     public function getCentrePrestation(): ?CentrePrestation
  144.     {
  145.         return $this->centre_prestation;
  146.     }
  147.     public function setCentrePrestation(?CentrePrestation $centre_prestation): self
  148.     {
  149.         $this->centre_prestation $centre_prestation;
  150.         return $this;
  151.     }
  152.     public function getRendezvous(): ?Rendezvous
  153.     {
  154.         return $this->rendezvous;
  155.     }
  156.     public function setRendezvous(Rendezvous $rendezvous): self
  157.     {
  158.         $this->rendezvous $rendezvous;
  159.         return $this;
  160.     }
  161.     public function isRdvInfDepot(): ?bool
  162.     {
  163.         return $this->rdv_inf_depot;
  164.     }
  165.     public function setRdvInfDepot(bool $rdv_inf_depot): self
  166.     {
  167.         $this->rdv_inf_depot $rdv_inf_depot;
  168.         return $this;
  169.     }
  170.     public function isRdvInfConvoyage(): ?bool
  171.     {
  172.         return $this->rdv_inf_convoyage;
  173.     }
  174.     public function setRdvInfConvoyage(bool $rdv_inf_convoyage): self
  175.     {
  176.         $this->rdv_inf_convoyage $rdv_inf_convoyage;
  177.         return $this;
  178.     }
  179.     public function isRdvInfPret(): ?bool
  180.     {
  181.         return $this->rdv_inf_pret;
  182.     }
  183.     public function setRdvInfPret(bool $rdv_inf_pret): self
  184.     {
  185.         $this->rdv_inf_pret $rdv_inf_pret;
  186.         return $this;
  187.     }
  188.     public function getRdvInfDateAvisGoogleSms(): ?\DateTimeInterface
  189.     {
  190.         return $this->rdv_inf_date_avis_google_sms;
  191.     }
  192.     public function setRdvInfDateAvisGoogleSms(?\DateTimeInterface $rdv_inf_date_avis_google_sms): self
  193.     {
  194.         $this->rdv_inf_date_avis_google_sms $rdv_inf_date_avis_google_sms;
  195.         return $this;
  196.     }
  197.     public function getRdvInfDateAvisGoogleEmail(): ?\DateTimeInterface
  198.     {
  199.         return $this->rdv_inf_date_avis_google_email;
  200.     }
  201.     public function setRdvInfDateAvisGoogleEmail(?\DateTimeInterface $rdv_inf_date_avis_google_email): self
  202.     {
  203.         $this->rdv_inf_date_avis_google_email $rdv_inf_date_avis_google_email;
  204.         return $this;
  205.     }
  206. }