src/Entity/Articlebonsortie.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ArticlebonsortieRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassArticlebonsortieRepository::class)]
  6. class Articlebonsortie
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255nullabletrue)]
  13.     private ?string $ref null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $qte null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $prixht null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $tva null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $prixttc null;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $total null;
  24.     #[ORM\ManyToOne(inversedBy'articlebonsorties')]
  25.     private ?Bondesortie $bondesortie null;
  26.     #[ORM\Column(length255nullabletrue)]
  27.     private ?string $reference null;
  28.     #[ORM\Column(length255nullabletrue)]
  29.     private ?string $couleur null;
  30.     #[ORM\ManyToOne(inversedBy'articlebonsorties')]
  31.     private ?Produits $produits null;
  32.     #[ORM\ManyToOne(inversedBy'articlebonsorties')]
  33.     private ?Coleur $couleurs null;
  34.     #[ORM\Column(length255nullabletrue)]
  35.     private ?string $nombrerouleaux null;
  36.     #[ORM\Column(length255nullabletrue)]
  37.     private ?string $dimentionlogo null;
  38.     #[ORM\Column(nullabletrue)]
  39.     private ?bool $Istissu null;
  40.     #[ORM\ManyToOne(inversedBy'articlebonsorties')]
  41.     private ?Detailsproduit $detailsproduit null;
  42.     #[ORM\Column(length255nullabletrue)]
  43.     private ?string $dimkappa null;
  44.     public function getId(): ?int
  45.     {
  46.         return $this->id;
  47.     }
  48.     public function getRef(): ?string
  49.     {
  50.         return $this->ref;
  51.     }
  52.     public function setRef(?string $ref): static
  53.     {
  54.         $this->ref $ref;
  55.         return $this;
  56.     }
  57.     public function getQte(): ?string
  58.     {
  59.         return $this->qte;
  60.     }
  61.     public function setQte(?string $qte): static
  62.     {
  63.         $this->qte $qte;
  64.         return $this;
  65.     }
  66.     public function getPrixht(): ?string
  67.     {
  68.         return $this->prixht;
  69.     }
  70.     public function setPrixht(?string $prixht): static
  71.     {
  72.         $this->prixht $prixht;
  73.         return $this;
  74.     }
  75.     public function getTva(): ?string
  76.     {
  77.         return $this->tva;
  78.     }
  79.     public function setTva(?string $tva): static
  80.     {
  81.         $this->tva $tva;
  82.         return $this;
  83.     }
  84.     public function getPrixttc(): ?string
  85.     {
  86.         return $this->prixttc;
  87.     }
  88.     public function setPrixttc(?string $prixttc): static
  89.     {
  90.         $this->prixttc $prixttc;
  91.         return $this;
  92.     }
  93.     public function getTotal(): ?string
  94.     {
  95.         return $this->total;
  96.     }
  97.     public function setTotal(?string $total): static
  98.     {
  99.         $this->total $total;
  100.         return $this;
  101.     }
  102.     public function getBondesortie(): ?Bondesortie
  103.     {
  104.         return $this->bondesortie;
  105.     }
  106.     public function setBondesortie(?Bondesortie $bondesortie): static
  107.     {
  108.         $this->bondesortie $bondesortie;
  109.         return $this;
  110.     }
  111.     public function getReference(): ?string
  112.     {
  113.         return $this->reference;
  114.     }
  115.     public function setReference(?string $reference): static
  116.     {
  117.         $this->reference $reference;
  118.         return $this;
  119.     }
  120.     public function getCouleur(): ?string
  121.     {
  122.         return $this->couleur;
  123.     }
  124.     public function setCouleur(?string $couleur): static
  125.     {
  126.         $this->couleur $couleur;
  127.         return $this;
  128.     }
  129.     public function getProduits(): ?Produits
  130.     {
  131.         return $this->produits;
  132.     }
  133.     public function setProduits(?Produits $produits): static
  134.     {
  135.         $this->produits $produits;
  136.         return $this;
  137.     }
  138.     public function getCouleurs(): ?Coleur
  139.     {
  140.         return $this->couleurs;
  141.     }
  142.     public function setCouleurs(?Coleur $couleurs): static
  143.     {
  144.         $this->couleurs $couleurs;
  145.         return $this;
  146.     }
  147.     public function getNombrerouleaux(): ?string
  148.     {
  149.         return $this->nombrerouleaux;
  150.     }
  151.     public function setNombrerouleaux(?string $nombrerouleaux): static
  152.     {
  153.         $this->nombrerouleaux $nombrerouleaux;
  154.         return $this;
  155.     }
  156.     public function getDimentionlogo(): ?string
  157.     {
  158.         return $this->dimentionlogo;
  159.     }
  160.     public function setDimentionlogo(?string $dimentionlogo): static
  161.     {
  162.         $this->dimentionlogo $dimentionlogo;
  163.         return $this;
  164.     }
  165.     public function isIstissu(): ?bool
  166.     {
  167.         return $this->Istissu;
  168.     }
  169.     public function setIstissu(?bool $Istissu): static
  170.     {
  171.         $this->Istissu $Istissu;
  172.         return $this;
  173.     }
  174.     public function getIstissu(): ?bool
  175.     {
  176.         return $this->Istissu;
  177.     }
  178.     public function getDetailsproduit(): ?Detailsproduit
  179.     {
  180.         return $this->detailsproduit;
  181.     }
  182.     public function setDetailsproduit(?Detailsproduit $detailsproduit): static
  183.     {
  184.         $this->detailsproduit $detailsproduit;
  185.         return $this;
  186.     }
  187.     public function getDimkappa(): ?string
  188.     {
  189.         return $this->dimkappa;
  190.     }
  191.     public function setDimkappa(?string $dimkappa): static
  192.     {
  193.         $this->dimkappa $dimkappa;
  194.         return $this;
  195.     }
  196. }