src/Entity/RendezVousPaiementMultiple.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RendezVousPaiementMultipleRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * @ORM\Entity(repositoryClass=RendezVousPaiementMultipleRepository::class)
  8.  */
  9. class RendezVousPaiementMultiple
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\GeneratedValue
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\ManyToOne(targetEntity=RendezVousFacturation::class, inversedBy="rendezVousPaiementMultiples")
  19.      * @ORM\JoinColumn(nullable=false)
  20.      */
  21.     private $rendezvous_facturation;
  22.     /**
  23.      * @ORM\Column(type="date")
  24.      */
  25.     private $fm_date;
  26.     /**
  27.      * @ORM\Column(type="decimal", precision=5, scale=2)
  28.      */
  29.     private $fm_montant;
  30.     /**
  31.      * @ORM\Column(type="integer")
  32.      */
  33.     private $fm_num_ligne;
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getFmDate(): ?\DateTimeInterface
  39.     {
  40.         return $this->fm_date;
  41.     }
  42.     public function setFmDate(\DateTimeInterface $fm_date): self
  43.     {
  44.         $this->fm_date $fm_date;
  45.         return $this;
  46.     }
  47.     public function getFmMontant(): ?string
  48.     {
  49.         return $this->fm_montant;
  50.     }
  51.     public function setFmMontant(string $fm_montant): self
  52.     {
  53.         $this->fm_montant $fm_montant;
  54.         return $this;
  55.     }
  56.     public function getFmNumLigne(): ?int
  57.     {
  58.         return $this->fm_num_ligne;
  59.     }
  60.     public function setFmNumLigne(int $fm_num_ligne): self
  61.     {
  62.         $this->fm_num_ligne $fm_num_ligne;
  63.         return $this;
  64.     }
  65.     public function getRendezvousFacturation(): ?RendezVousFacturation
  66.     {
  67.         return $this->rendezvous_facturation;
  68.     }
  69.     public function setRendezvousFacturation(?RendezVousFacturation $rendezvous_facturation): self
  70.     {
  71.         $this->rendezvous_facturation $rendezvous_facturation;
  72.         return $this;
  73.     }
  74. }