src/Entity/Historiquepaiementsdevis.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\HistoriquepaiementsdevisRepository;
  4. use DateTimeInterface;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassHistoriquepaiementsdevisRepository::class)]
  8. class Historiquepaiementsdevis
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $montant null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $acompte null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $reste null;
  20.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  21.     private ?DateTimeInterface $date null;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $piecejointe null;
  24.     #[ORM\ManyToOne(inversedBy'historiquepaiementsdevis')]
  25.     private ?Paymentdevi $paymentdevi null;
  26.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  27.     private ?string $description null;
  28.     #[ORM\Column(length255nullabletrue)]
  29.     private ?string $modedepaiement null;
  30.     #[ORM\Column(length255nullabletrue)]
  31.     private ?string $num null;
  32.     #[ORM\Column(length255nullabletrue)]
  33.     private ?string $remise null;
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getMontant(): ?string
  39.     {
  40.         return $this->montant;
  41.     }
  42.     public function setMontant(?string $montant): static
  43.     {
  44.         $this->montant $montant;
  45.         return $this;
  46.     }
  47.     public function getAcompte(): ?string
  48.     {
  49.         return $this->acompte;
  50.     }
  51.     public function setAcompte(?string $acompte): static
  52.     {
  53.         $this->acompte $acompte;
  54.         return $this;
  55.     }
  56.     public function getReste(): ?string
  57.     {
  58.         return $this->reste;
  59.     }
  60.     public function setReste(?string $reste): static
  61.     {
  62.         $this->reste $reste;
  63.         return $this;
  64.     }
  65.     public function getDate(): ?DateTimeInterface
  66.     {
  67.         return $this->date;
  68.     }
  69.     public function setDate(DateTimeInterface $date): static
  70.     {
  71.         $this->date $date;
  72.         return $this;
  73.     }
  74.     public function getPiecejointe(): ?string
  75.     {
  76.         return $this->piecejointe;
  77.     }
  78.     public function setPiecejointe(?string $piecejointe): static
  79.     {
  80.         $this->piecejointe $piecejointe;
  81.         return $this;
  82.     }
  83.     public function getPaymentdevi(): ?Paymentdevi
  84.     {
  85.         return $this->paymentdevi;
  86.     }
  87.     public function setPaymentdevi(?Paymentdevi $paymentdevi): static
  88.     {
  89.         $this->paymentdevi $paymentdevi;
  90.         return $this;
  91.     }
  92.     public function getDescription(): ?string
  93.     {
  94.         return $this->description;
  95.     }
  96.     public function setDescription(?string $description): static
  97.     {
  98.         $this->description $description;
  99.         return $this;
  100.     }
  101.     public function getModedepaiement(): ?string
  102.     {
  103.         return $this->modedepaiement;
  104.     }
  105.     public function setModedepaiement(?string $modedepaiement): static
  106.     {
  107.         $this->modedepaiement $modedepaiement;
  108.         return $this;
  109.     }
  110.     public function getNum(): ?string
  111.     {
  112.         return $this->num;
  113.     }
  114.     public function setNum(?string $num): self
  115.     {
  116.         $this->num $num;
  117.         return $this;
  118.     }
  119.     public function getRemise(): ?string
  120.     {
  121.         return $this->remise;
  122.     }
  123.     public function setRemise(?string $remise): self
  124.     {
  125.         $this->remise $remise;
  126.         return $this;
  127.     }
  128. }