src/Entity/UsOperation.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UsOperationRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassUsOperationRepository::class)]
  8. class UsOperation
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\ManyToOne(inversedBy'operations')]
  15.     private ?UsSousModule $sousModule null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $link null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $icon null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $designation null;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $classTag null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $idTag null;
  26.     #[ORM\Column(nullabletrue)]
  27.     private ?int $ordre null;
  28.     #[ORM\OneToMany(mappedBy'operation'targetEntityUserOperationDossier::class)]
  29.     private Collection $userOperationDossiers;
  30.     #[ORM\Column(nullabletrue)]
  31.     private ?bool $align null;
  32.     #[ORM\Column(nullabletrue)]
  33.     private ?bool $active null;
  34.     
  35.     public function __construct()
  36.     {
  37.         $this->userOperationDossiers = new ArrayCollection();
  38.     }
  39.     /**
  40.      * @return Collection<int, UsSousModule>
  41.      */
  42.     public function gztUserOperationDossiers(): Collection
  43.     {
  44.         return $this->userOperationDossiers;
  45.     }
  46.  
  47.     public function getId(): ?int
  48.     {
  49.         return $this->id;
  50.     }
  51.     public function getSousModule(): ?UsSousModule
  52.     {
  53.         return $this->sousModule;
  54.     }
  55.     public function setSousModule(?UsSousModule $sousModule): self
  56.     {
  57.         $this->sousModule $sousModule;
  58.         return $this;
  59.     }
  60.     public function getLink(): ?string
  61.     {
  62.         return $this->link;
  63.     }
  64.     public function setLink(?string $link): self
  65.     {
  66.         $this->link $link;
  67.         return $this;
  68.     }
  69.     public function getIcon(): ?string
  70.     {
  71.         return $this->icon;
  72.     }
  73.     public function setIcon(?string $icon): self
  74.     {
  75.         $this->icon $icon;
  76.         return $this;
  77.     }
  78.     public function getDesignation(): ?string
  79.     {
  80.         return $this->designation;
  81.     }
  82.     public function setDesignation(?string $designation): self
  83.     {
  84.         $this->designation $designation;
  85.         return $this;
  86.     }
  87.     public function getClassTag(): ?string
  88.     {
  89.         return $this->classTag;
  90.     }
  91.     public function setClassTag(?string $classTag): self
  92.     {
  93.         $this->classTag $classTag;
  94.         return $this;
  95.     }
  96.     public function getIdTag(): ?string
  97.     {
  98.         return $this->idTag;
  99.     }
  100.     public function setIdTag(?string $idTag): self
  101.     {
  102.         $this->idTag $idTag;
  103.         return $this;
  104.     }
  105.     public function getOrdre(): ?int
  106.     {
  107.         return $this->ordre;
  108.     }
  109.     public function setOrdre(?int $ordre): self
  110.     {
  111.         $this->ordre $ordre;
  112.         return $this;
  113.     }
  114.     public function isAlign(): ?bool
  115.     {
  116.         return $this->align;
  117.     }
  118.     public function setAlign(?bool $align): self
  119.     {
  120.         $this->align $align;
  121.         return $this;
  122.     }
  123.     public function isActive(): ?bool
  124.     {
  125.         return $this->active;
  126.     }
  127.     public function setActive(?bool $active): static
  128.     {
  129.         $this->active $active;
  130.         return $this;
  131.     }
  132. }