src/Entity/UsSousModule.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UsSousModuleRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassUsSousModuleRepository::class)]
  8. class UsSousModule
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\ManyToOne(inversedBy'sousModules')]
  15.     private ?UsModule $module null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $link null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $designation null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $prefix null;
  22.     #[ORM\Column]
  23.     private ?int $ordre null;
  24.     #[ORM\OneToMany(mappedBy'sousModule'targetEntityUsOperation::class)]
  25.     private Collection $operations;
  26.     public function __construct()
  27.     {
  28.         $this->operations = new ArrayCollection();
  29.     }
  30.     public function getId(): ?int
  31.     {
  32.         return $this->id;
  33.     }
  34.     public function getModule(): ?UsModule
  35.     {
  36.         return $this->module;
  37.     }
  38.     public function setModule(?UsModule $module): self
  39.     {
  40.         $this->module $module;
  41.         return $this;
  42.     }
  43.     public function getLink(): ?string
  44.     {
  45.         return $this->link;
  46.     }
  47.     public function setLink(?string $link): self
  48.     {
  49.         $this->link $link;
  50.         return $this;
  51.     }
  52.     public function getDesignation(): ?string
  53.     {
  54.         return $this->designation;
  55.     }
  56.     public function setDesignation(?string $designation): self
  57.     {
  58.         $this->designation $designation;
  59.         return $this;
  60.     }
  61.     public function getPrefix(): ?string
  62.     {
  63.         return $this->prefix;
  64.     }
  65.     public function setPrefix(?string $prefix): self
  66.     {
  67.         $this->prefix $prefix;
  68.         return $this;
  69.     }
  70.     public function getOrdre(): ?int
  71.     {
  72.         return $this->ordre;
  73.     }
  74.     public function setOrdre(int $ordre): self
  75.     {
  76.         $this->ordre $ordre;
  77.         return $this;
  78.     }
  79.     /**
  80.      * @return Collection<int, UsOperation>
  81.      */
  82.     public function getOperations(): Collection
  83.     {
  84.         return $this->operations;
  85.     }
  86.     public function addOperation(UsOperation $operation): self
  87.     {
  88.         if (!$this->operations->contains($operation)) {
  89.             $this->operations->add($operation);
  90.             $operation->setSousModule($this);
  91.         }
  92.         return $this;
  93.     }
  94.     public function removeOperation(UsOperation $operation): self
  95.     {
  96.         if ($this->operations->removeElement($operation)) {
  97.             // set the owning side to null (unless already changed)
  98.             if ($operation->getSousModule() === $this) {
  99.                 $operation->setSousModule(null);
  100.             }
  101.         }
  102.         return $this;
  103.     }
  104. }