src/Entity/PCompteComptable.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PCompteComptableRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassPCompteComptableRepository::class)]
  6. class PCompteComptable
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\ManyToOne(inversedBy'compteComptables')]
  13.     private ?Prubrique $rubrique null;
  14.     #[ORM\ManyToOne(inversedBy'compteComptables')]
  15.     private ?PnatureContract $natureContract null;
  16.     #[ORM\Column(nullabletrue)]
  17.     private ?int $articleUgouvId null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $articleUgouvRh null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $compteComptable null;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $sens null;
  24.     #[ORM\Column(nullabletrue)]
  25.     private ?float $qte null;
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getRubrique(): ?Prubrique
  31.     {
  32.         return $this->rubrique;
  33.     }
  34.     public function setRubrique(?Prubrique $rubrique): self
  35.     {
  36.         $this->rubrique $rubrique;
  37.         return $this;
  38.     }
  39.     public function getNatureContract(): ?PnatureContract
  40.     {
  41.         return $this->natureContract;
  42.     }
  43.     public function setNatureContract(?PnatureContract $natureContract): self
  44.     {
  45.         $this->natureContract $natureContract;
  46.         return $this;
  47.     }
  48.     public function getArticleUgouvId(): ?int
  49.     {
  50.         return $this->articleUgouvId;
  51.     }
  52.     public function setArticleUgouvId(?int $articleUgouvId): self
  53.     {
  54.         $this->articleUgouvId $articleUgouvId;
  55.         return $this;
  56.     }
  57.     public function getArticleUgouvRh(): ?string
  58.     {
  59.         return $this->articleUgouvRh;
  60.     }
  61.     public function setArticleUgouvRh(?string $articleUgouvRh): self
  62.     {
  63.         $this->articleUgouvRh $articleUgouvRh;
  64.         return $this;
  65.     }
  66.     public function getCompteComptable(): ?string
  67.     {
  68.         return $this->compteComptable;
  69.     }
  70.     public function setCompteComptable(?string $compteComptable): self
  71.     {
  72.         $this->compteComptable $compteComptable;
  73.         return $this;
  74.     }
  75.     public function getSens(): ?string
  76.     {
  77.         return $this->sens;
  78.     }
  79.     public function setSens(?string $sens): self
  80.     {
  81.         $this->sens $sens;
  82.         return $this;
  83.     }
  84.     public function getQte(): ?float
  85.     {
  86.         return $this->qte;
  87.     }
  88.     public function setQte(?float $qte): self
  89.     {
  90.         $this->qte $qte;
  91.         return $this;
  92.     }
  93. }