src/Entity/Articleachat.php line 9

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