src/Entity/Lignebondesortie.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LignebondesortieRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassLignebondesortieRepository::class)]
  6. class Lignebondesortie
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255nullabletrue)]
  13.     private ?string $quantity null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $prix null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $montant null;
  18.     #[ORM\ManyToOne(inversedBy'lignebondesorties')]
  19.     private ?Bondesortie $bondesorte null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $type null;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $designation null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $remise null;
  26.     #[ORM\Column(length255nullabletrue)]
  27.     private ?string $montantht null;
  28.     #[ORM\Column(length255nullabletrue)]
  29.     private ?string $code null;
  30.     #[ORM\Column(length255nullabletrue)]
  31.     private ?string $tva null;
  32.     #[ORM\Column(length255nullabletrue)]
  33.     private ?string $deviss null;
  34.     #[ORM\Column(length255nullabletrue)]
  35.     private ?string $coursdejours null;
  36.     #[ORM\Column(length255nullabletrue)]
  37.     private ?string $prixunitdt null;
  38.     public function getId(): ?int
  39.     {
  40.         return $this->id;
  41.     }
  42.     public function getQuantity(): ?string
  43.     {
  44.         return $this->quantity;
  45.     }
  46.     public function setQuantity(?string $quantity): self
  47.     {
  48.         $this->quantity $quantity;
  49.         return $this;
  50.     }
  51.     public function getPrix(): ?string
  52.     {
  53.         return $this->prix;
  54.     }
  55.     public function setPrix(?string $prix): self
  56.     {
  57.         $this->prix $prix;
  58.         return $this;
  59.     }
  60.     public function getMontant(): ?string
  61.     {
  62.         return $this->montant;
  63.     }
  64.     public function setMontant(?string $montant): self
  65.     {
  66.         $this->montant $montant;
  67.         return $this;
  68.     }
  69.     public function getBondesorte(): ?Bondesortie
  70.     {
  71.         return $this->bondesorte;
  72.     }
  73.     public function setBondesorte(?Bondesortie $bondesorte): self
  74.     {
  75.         $this->bondesorte $bondesorte;
  76.         return $this;
  77.     }
  78.     public function getType(): ?string
  79.     {
  80.         return $this->type;
  81.     }
  82.     public function setType(?string $type): self
  83.     {
  84.         $this->type $type;
  85.         return $this;
  86.     }
  87.     public function getDesignation(): ?string
  88.     {
  89.         return $this->designation;
  90.     }
  91.     public function setDesignation(?string $designation): self
  92.     {
  93.         $this->designation $designation;
  94.         return $this;
  95.     }
  96.     public function getRemise(): ?string
  97.     {
  98.         return $this->remise;
  99.     }
  100.     public function setRemise(?string $remise): self
  101.     {
  102.         $this->remise $remise;
  103.         return $this;
  104.     }
  105.     public function getMontantht(): ?string
  106.     {
  107.         return $this->montantht;
  108.     }
  109.     public function setMontantht(?string $montantht): self
  110.     {
  111.         $this->montantht $montantht;
  112.         return $this;
  113.     }
  114.     public function getCode(): ?string
  115.     {
  116.         return $this->code;
  117.     }
  118.     public function setCode(?string $code): self
  119.     {
  120.         $this->code $code;
  121.         return $this;
  122.     }
  123.     public function getTva(): ?string
  124.     {
  125.         return $this->tva;
  126.     }
  127.     public function setTva(?string $tva): self
  128.     {
  129.         $this->tva $tva;
  130.         return $this;
  131.     }
  132.     public function getDeviss(): ?string
  133.     {
  134.         return $this->deviss;
  135.     }
  136.     public function setDeviss(?string $deviss): self
  137.     {
  138.         $this->deviss $deviss;
  139.         return $this;
  140.     }
  141.     public function getCoursdejours(): ?string
  142.     {
  143.         return $this->coursdejours;
  144.     }
  145.     public function setCoursdejours(?string $coursdejours): self
  146.     {
  147.         $this->coursdejours $coursdejours;
  148.         return $this;
  149.     }
  150.     public function getPrixunitdt(): ?string
  151.     {
  152.         return $this->prixunitdt;
  153.     }
  154.     public function setPrixunitdt(?string $prixunitdt): self
  155.     {
  156.         $this->prixunitdt $prixunitdt;
  157.         return $this;
  158.     }
  159. }