<?php
declare(strict_types=1);
namespace App\Infrastructure\Doctrine\Entity;
use App\Domain\Common\Entity\IzOrderClientPrice;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass="App\Infrastructure\Doctrine\Repository\DoctrineIzOrderClientPriceRepository")
*/
class DoctrineIzOrderClientPrice implements IzOrderClientPrice
{
/**
* @ORM\Id
* @ORM\Column(type="string", length=16, unique=true)
*/
private string $codeTgp = '';
/**
* @ORM\Column(type="string", length=191, nullable=true)
*/
private ?string $libelle = null;
public function getCodeTgp(): string
{
return $this->codeTgp;
}
public function setCodeTgp(string $codeTgp): void
{
$this->codeTgp = $codeTgp;
}
public function getLibelle(): ?string
{
return $this->libelle;
}
public function setLibelle(?string $libelle): void
{
$this->libelle = $libelle;
}
}