<?php
namespace App\Entity;
use App\Repository\LignebondesortieRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: LignebondesortieRepository::class)]
class Lignebondesortie
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $quantity = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $prix = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $montant = null;
#[ORM\ManyToOne(inversedBy: 'lignebondesorties')]
private ?Bondesortie $bondesorte = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $type = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $designation = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $remise = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $montantht = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $code = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $tva = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $deviss = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $coursdejours = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $prixunitdt = null;
public function getId(): ?int
{
return $this->id;
}
public function getQuantity(): ?string
{
return $this->quantity;
}
public function setQuantity(?string $quantity): self
{
$this->quantity = $quantity;
return $this;
}
public function getPrix(): ?string
{
return $this->prix;
}
public function setPrix(?string $prix): self
{
$this->prix = $prix;
return $this;
}
public function getMontant(): ?string
{
return $this->montant;
}
public function setMontant(?string $montant): self
{
$this->montant = $montant;
return $this;
}
public function getBondesorte(): ?Bondesortie
{
return $this->bondesorte;
}
public function setBondesorte(?Bondesortie $bondesorte): self
{
$this->bondesorte = $bondesorte;
return $this;
}
public function getType(): ?string
{
return $this->type;
}
public function setType(?string $type): self
{
$this->type = $type;
return $this;
}
public function getDesignation(): ?string
{
return $this->designation;
}
public function setDesignation(?string $designation): self
{
$this->designation = $designation;
return $this;
}
public function getRemise(): ?string
{
return $this->remise;
}
public function setRemise(?string $remise): self
{
$this->remise = $remise;
return $this;
}
public function getMontantht(): ?string
{
return $this->montantht;
}
public function setMontantht(?string $montantht): self
{
$this->montantht = $montantht;
return $this;
}
public function getCode(): ?string
{
return $this->code;
}
public function setCode(?string $code): self
{
$this->code = $code;
return $this;
}
public function getTva(): ?string
{
return $this->tva;
}
public function setTva(?string $tva): self
{
$this->tva = $tva;
return $this;
}
public function getDeviss(): ?string
{
return $this->deviss;
}
public function setDeviss(?string $deviss): self
{
$this->deviss = $deviss;
return $this;
}
public function getCoursdejours(): ?string
{
return $this->coursdejours;
}
public function setCoursdejours(?string $coursdejours): self
{
$this->coursdejours = $coursdejours;
return $this;
}
public function getPrixunitdt(): ?string
{
return $this->prixunitdt;
}
public function setPrixunitdt(?string $prixunitdt): self
{
$this->prixunitdt = $prixunitdt;
return $this;
}
}