src/Entity/RDVBilling.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity(repositoryClass="App\Repository\RDVBillingRepository")
  6.  */
  7. class RDVBilling
  8. {
  9.     /**
  10.      * @ORM\Id()
  11.      * @ORM\GeneratedValue()
  12.      * @ORM\Column(type="integer")
  13.      */
  14.     private $id;
  15.     /**
  16.      * @ORM\ManyToOne(targetEntity="App\Entity\RDV", inversedBy="RDVBillings", fetch="EAGER")
  17.      * @ORM\JoinColumn(name="rdv_id", referencedColumnName="id", onDelete="SET NULL")
  18.      */
  19.     private $RDV;
  20.     /**
  21.      * @ORM\ManyToOne(targetEntity="App\Entity\Billing", inversedBy="RDVBillings")
  22.      */
  23.     private $Billing;
  24.     public function __toString(){
  25.         return (string) $this->id;
  26.     }
  27.     
  28.     public function getId(): ?int
  29.     {
  30.         return $this->id;
  31.     }
  32.     public function getRDV(): ?RDV
  33.     {
  34.         return $this->RDV;
  35.     }
  36.     public function setRDV(?RDV $RDV): self
  37.     {
  38.         $this->RDV $RDV;
  39.         return $this;
  40.     }
  41.     public function getBilling(): ?Billing
  42.     {
  43.         return $this->Billing;
  44.     }
  45.     public function setBilling(?Billing $Billing): self
  46.     {
  47.         $this->Billing $Billing;
  48.         return $this;
  49.     }
  50. }