src/Entity/Articlegestion.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ArticlegestionRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassArticlegestionRepository::class)]
  6. class Articlegestion
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255nullabletrue)]
  13.     private ?string $nom null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $prix null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $qte null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $reference null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $poid null;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $totalepoid null;
  24.     #[ORM\ManyToOne(inversedBy'articlegestions')]
  25.     private ?Gestiondestock $gestiondestock null;
  26.     #[ORM\Column(length255nullabletrue)]
  27.     private ?string $designation null;
  28.     #[ORM\Column(length255nullabletrue)]
  29.     private ?string $prixht null;
  30.     #[ORM\Column(length255nullabletrue)]
  31.     private ?string $tva null;
  32.     #[ORM\Column(length255nullabletrue)]
  33.     private ?string $prixttc null;
  34.     #[ORM\Column(length255nullabletrue)]
  35.     private ?string $totale null;
  36.     #[ORM\Column(length255nullabletrue)]
  37.     private ?string $ref null;
  38.     #[ORM\Column(length255nullabletrue)]
  39.     private ?string $totpoid null;
  40.     #[ORM\Column(length255nullabletrue)]
  41.     private ?string $reste null;
  42.     #[ORM\Column(length255nullabletrue)]
  43.     private ?string $resteqte null;
  44.     #[ORM\ManyToOne(inversedBy'articlegestions')]
  45.     private ?Produits $produit null;
  46.     #[ORM\Column(nullabletrue)]
  47.     private ?bool $Istissu null;
  48.     #[ORM\Column(length255nullabletrue)]
  49.     private ?string $couleur null;
  50.     #[ORM\Column(length255nullabletrue)]
  51.     private ?string $nombrerouleaux null;
  52.     #[ORM\ManyToOne(inversedBy'articlegestions')]
  53.     private ?Coleur $couleurs null;
  54.     #[ORM\Column(length255nullabletrue)]
  55.     private ?string $dimentionlogo null;
  56.     #[ORM\Column(length255nullabletrue)]
  57.     private ?string $total null;
  58.     #[ORM\ManyToOne(inversedBy'articlegestions')]
  59.     private ?Detailsproduit $detailsproduit null;
  60.     #[ORM\Column(length255nullabletrue)]
  61.     private ?string $nbroleaux null;
  62.     #[ORM\Column(length255nullabletrue)]
  63.     private ?string $dimkappa null;
  64.     public function getId(): ?int
  65.     {
  66.         return $this->id;
  67.     }
  68.     public function getNom(): ?string
  69.     {
  70.         return $this->nom;
  71.     }
  72.     public function setNom(?string $nom): static
  73.     {
  74.         $this->nom $nom;
  75.         return $this;
  76.     }
  77.     public function getPrix(): ?string
  78.     {
  79.         return $this->prix;
  80.     }
  81.     public function setPrix(?string $prix): static
  82.     {
  83.         $this->prix $prix;
  84.         return $this;
  85.     }
  86.     public function getQte(): ?string
  87.     {
  88.         return $this->qte;
  89.     }
  90.     public function setQte(?string $qte): static
  91.     {
  92.         $this->qte $qte;
  93.         return $this;
  94.     }
  95.     public function getReference(): ?string
  96.     {
  97.         return $this->reference;
  98.     }
  99.     public function setReference(?string $reference): static
  100.     {
  101.         $this->reference $reference;
  102.         return $this;
  103.     }
  104.     public function getPoid(): ?string
  105.     {
  106.         return $this->poid;
  107.     }
  108.     public function setPoid(?string $poid): static
  109.     {
  110.         $this->poid $poid;
  111.         return $this;
  112.     }
  113.     public function getTotalepoid(): ?string
  114.     {
  115.         return $this->totalepoid;
  116.     }
  117.     public function setTotalepoid(?string $totalepoid): static
  118.     {
  119.         $this->totalepoid $totalepoid;
  120.         return $this;
  121.     }
  122.     public function getGestiondestock(): ?Gestiondestock
  123.     {
  124.         return $this->gestiondestock;
  125.     }
  126.     public function setGestiondestock(?Gestiondestock $gestiondestock): static
  127.     {
  128.         $this->gestiondestock $gestiondestock;
  129.         return $this;
  130.     }
  131.     public function getDesignation(): ?string
  132.     {
  133.         return $this->designation;
  134.     }
  135.     public function setDesignation(?string $designation): static
  136.     {
  137.         $this->designation $designation;
  138.         return $this;
  139.     }
  140.     public function getPrixht(): ?string
  141.     {
  142.         return $this->prixht;
  143.     }
  144.     public function setPrixht(?string $prixht): static
  145.     {
  146.         $this->prixht $prixht;
  147.         return $this;
  148.     }
  149.     public function getTva(): ?string
  150.     {
  151.         return $this->tva;
  152.     }
  153.     public function setTva(?string $tva): static
  154.     {
  155.         $this->tva $tva;
  156.         return $this;
  157.     }
  158.     public function getPrixttc(): ?string
  159.     {
  160.         return $this->prixttc;
  161.     }
  162.     public function setPrixttc(?string $prixttc): static
  163.     {
  164.         $this->prixttc $prixttc;
  165.         return $this;
  166.     }
  167.     public function getTotale(): ?string
  168.     {
  169.         return $this->totale;
  170.     }
  171.     public function setTotale(?string $totale): static
  172.     {
  173.         $this->totale $totale;
  174.         return $this;
  175.     }
  176.     public function getRef(): ?string
  177.     {
  178.         return $this->ref;
  179.     }
  180.     public function setRef(?string $ref): static
  181.     {
  182.         $this->ref $ref;
  183.         return $this;
  184.     }
  185.     public function getTotpoid(): ?string
  186.     {
  187.         return $this->totpoid;
  188.     }
  189.     public function setTotpoid(?string $totpoid): static
  190.     {
  191.         $this->totpoid $totpoid;
  192.         return $this;
  193.     }
  194.     public function getReste(): ?string
  195.     {
  196.         return $this->reste;
  197.     }
  198.     public function setReste(?string $reste): static
  199.     {
  200.         $this->reste $reste;
  201.         return $this;
  202.     }
  203.     public function getResteqte(): ?string
  204.     {
  205.         return $this->resteqte;
  206.     }
  207.     public function setResteqte(?string $resteqte): static
  208.     {
  209.         $this->resteqte $resteqte;
  210.         return $this;
  211.     }
  212.     public function getProduit(): ?Produits
  213.     {
  214.         return $this->produit;
  215.     }
  216.     public function setProduit(?Produits $produit): static
  217.     {
  218.         $this->produit $produit;
  219.         return $this;
  220.     }
  221.     public function isIstissu(): ?bool
  222.     {
  223.         return $this->Istissu;
  224.     }
  225.     public function setIstissu(?bool $Istissu): static
  226.     {
  227.         $this->Istissu $Istissu;
  228.         return $this;
  229.     }
  230.     public function getCouleur(): ?string
  231.     {
  232.         return $this->couleur;
  233.     }
  234.     public function setCouleur(?string $couleur): static
  235.     {
  236.         $this->couleur $couleur;
  237.         return $this;
  238.     }
  239.     public function getNombrerouleaux(): ?string
  240.     {
  241.         return $this->nombrerouleaux;
  242.     }
  243.     public function setNombrerouleaux(?string $nombrerouleaux): static
  244.     {
  245.         $this->nombrerouleaux $nombrerouleaux;
  246.         return $this;
  247.     }
  248.     public function getCouleurs(): ?Coleur
  249.     {
  250.         return $this->couleurs;
  251.     }
  252.     public function setCouleurs(?Coleur $couleurs): static
  253.     {
  254.         $this->couleurs $couleurs;
  255.         return $this;
  256.     }
  257.     public function getDimentionlogo(): ?string
  258.     {
  259.         return $this->dimentionlogo;
  260.     }
  261.     public function setDimentionlogo(?string $dimentionlogo): static
  262.     {
  263.         $this->dimentionlogo $dimentionlogo;
  264.         return $this;
  265.     }
  266.     public function getTotal(): ?string
  267.     {
  268.         return $this->total;
  269.     }
  270.     public function setTotal(?string $total): static
  271.     {
  272.         $this->total $total;
  273.         return $this;
  274.     }
  275.     public function getDetailsproduit(): ?Detailsproduit
  276.     {
  277.         return $this->detailsproduit;
  278.     }
  279.     public function setDetailsproduit(?Detailsproduit $detailsproduit): static
  280.     {
  281.         $this->detailsproduit $detailsproduit;
  282.         return $this;
  283.     }
  284.     public function getNbroleaux(): ?string
  285.     {
  286.         return $this->nbroleaux;
  287.     }
  288.     public function setNbroleaux(?string $nbroleaux): static
  289.     {
  290.         $this->nbroleaux $nbroleaux;
  291.         return $this;
  292.     }
  293.     public function getDimkappa(): ?string
  294.     {
  295.         return $this->dimkappa;
  296.     }
  297.     public function setDimkappa(?string $dimkappa): static
  298.     {
  299.         $this->dimkappa $dimkappa;
  300.         return $this;
  301.     }
  302. }