src/Entity/PPiece.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PPieceRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassPPieceRepository::class)]
  8. class PPiece
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $designation null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $abreviation null;
  18.     #[ORM\OneToMany(mappedBy'piece'targetEntityTbulletin::class)]
  19.     private Collection $bulletin;
  20.     #[ORM\OneToMany(mappedBy'piece'targetEntityPBordereau::class)]
  21.     private Collection $pBordereaus;
  22.     public function __construct()
  23.     {
  24.         $this->bulletin = new ArrayCollection();
  25.         $this->pBordereaus = new ArrayCollection();
  26.     }
  27.     public function getId(): ?int
  28.     {
  29.         return $this->id;
  30.     }
  31.     public function getDesignation(): ?string
  32.     {
  33.         return $this->designation;
  34.     }
  35.     public function setDesignation(?string $designation): self
  36.     {
  37.         $this->designation $designation;
  38.         return $this;
  39.     }
  40.     public function getAbreviation(): ?string
  41.     {
  42.         return $this->abreviation;
  43.     }
  44.     public function setAbreviation(?string $abreviation): self
  45.     {
  46.         $this->abreviation $abreviation;
  47.         return $this;
  48.     }
  49.     /**
  50.      * @return Collection<int, Tbulletin>
  51.      */
  52.     public function getBulletin(): Collection
  53.     {
  54.         return $this->bulletin;
  55.     }
  56.     public function addBulletin(Tbulletin $bulletin): self
  57.     {
  58.         if (!$this->bulletin->contains($bulletin)) {
  59.             $this->bulletin->add($bulletin);
  60.             $bulletin->setPPiece($this);
  61.         }
  62.         return $this;
  63.     }
  64.     public function removeBulletin(Tbulletin $bulletin): self
  65.     {
  66.         if ($this->bulletin->removeElement($bulletin)) {
  67.             // set the owning side to null (unless already changed)
  68.             if ($bulletin->getPPiece() === $this) {
  69.                 $bulletin->setPPiece(null);
  70.             }
  71.         }
  72.         return $this;
  73.     }
  74.     /**
  75.      * @return Collection<int, PBordereau>
  76.      */
  77.     public function getPBordereaus(): Collection
  78.     {
  79.         return $this->pBordereaus;
  80.     }
  81.     public function addPBordereau(PBordereau $pBordereau): self
  82.     {
  83.         if (!$this->pBordereaus->contains($pBordereau)) {
  84.             $this->pBordereaus->add($pBordereau);
  85.             $pBordereau->setPiece($this);
  86.         }
  87.         return $this;
  88.     }
  89.     public function removePBordereau(PBordereau $pBordereau): self
  90.     {
  91.         if ($this->pBordereaus->removeElement($pBordereau)) {
  92.             // set the owning side to null (unless already changed)
  93.             if ($pBordereau->getPiece() === $this) {
  94.                 $pBordereau->setPiece(null);
  95.             }
  96.         }
  97.         return $this;
  98.     }
  99. }