src/Entity/GroupAncestorDetails.php line 10

  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use App\Repository\GroupAncestorDetailsRepository;
  5. use Symfony\Component\Serializer\Annotation\Groups;
  6. #[ORM\Entity(repositoryClassGroupAncestorDetailsRepository::class)]
  7. class GroupAncestorDetails
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\Column]
  11.     #[Groups(['groupAncestor'])]
  12.     private ?int $id null;
  13.     #[ORM\ManyToOne(targetEntityself::class)]
  14.     #[ORM\JoinColumn(nullablefalse)]
  15.     private ?self $groupAncestor null;
  16.     #[ORM\Column(length255)]
  17.     #[Groups(['groupAncestor'])]
  18.     private ?string $groupName null;
  19.     #[ORM\Column]
  20.     #[Groups(['groupAncestor'])]
  21.     private ?int $groupLevelId null;
  22.     #[ORM\Column(length255)]
  23.     #[Groups(['groupAncestor'])]
  24.     private ?string $groupLevelName null;
  25.     #[ORM\Column(length255)]
  26.     #[Groups(['groupAncestor'])]
  27.     private ?string $groupTypeName null;
  28.     public function setId(int $id): self
  29.     {
  30.         $this->id $id;
  31.         return $this;
  32.     }
  33.     
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getGroupName(): ?string
  39.     {
  40.         return $this->groupName;
  41.     }
  42.     public function setGroupName(string $groupName): self
  43.     {
  44.         $this->groupName $groupName;
  45.         return $this;
  46.     }
  47.     public function getGroupLevelId(): ?int
  48.     {
  49.         return $this->groupLevelId;
  50.     }
  51.     public function setGroupLevelId(int $groupLevelId): self
  52.     {
  53.         $this->groupLevelId $groupLevelId;
  54.         return $this;
  55.     }
  56.     public function getGroupLevelName(): ?string
  57.     {
  58.         return $this->groupLevelName;
  59.     }
  60.     public function setGroupLevelName(string $groupLevelName): self
  61.     {
  62.         $this->groupLevelName $groupLevelName;
  63.         return $this;
  64.     }
  65.     public function getGroupTypeName(): ?string
  66.     {
  67.         return $this->groupTypeName;
  68.     }
  69.     public function setGroupTypeName(string $groupTypeName): self
  70.     {
  71.         $this->groupTypeName $groupTypeName;
  72.         return $this;
  73.     }
  74.     
  75.     #[Groups(['groupAncestor'])]
  76.     public function getGroupAncestorId(): ?int
  77.     {
  78.         return $this->groupAncestor->getId();
  79.     }
  80.     public function getGroupAncestor(): ?self
  81.     {
  82.         return $this->groupAncestor;
  83.     }
  84.     public function setGroupAncestor(?self $groupAncestor): static
  85.     {
  86.         $this->groupAncestor $groupAncestor;
  87.         return $this;
  88.     }
  89. }