66 lines
1.2 KiB
PHP
66 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
use App\Repository\DetailsCommandeRepository;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
#[ORM\Entity(repositoryClass: DetailsCommandeRepository::class)]
|
|
class DetailsCommande
|
|
{
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column]
|
|
private ?int $id = null;
|
|
|
|
#[ORM\Column]
|
|
private ?int $Quantite = null;
|
|
|
|
#[ORM\Column]
|
|
private ?float $PrixUnitaire = null;
|
|
|
|
#[ORM\ManyToOne(inversedBy: 'detailsCommandes')]
|
|
private ?Commandes $Commande = null;
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getQuantite(): ?int
|
|
{
|
|
return $this->Quantite;
|
|
}
|
|
|
|
public function setQuantite(int $Quantite): static
|
|
{
|
|
$this->Quantite = $Quantite;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getPrixUnitaire(): ?float
|
|
{
|
|
return $this->PrixUnitaire;
|
|
}
|
|
|
|
public function setPrixUnitaire(float $PrixUnitaire): static
|
|
{
|
|
$this->PrixUnitaire = $PrixUnitaire;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getCommande(): ?Commandes
|
|
{
|
|
return $this->Commande;
|
|
}
|
|
|
|
public function setCommande(?Commandes $Commande): static
|
|
{
|
|
$this->Commande = $Commande;
|
|
|
|
return $this;
|
|
}
|
|
}
|