src/Entity/NotificationsConfig.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\NotificationsConfigRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=NotificationsConfigRepository::class)
  7.  */
  8. class NotificationsConfig
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="smallint")
  18.      */
  19.     private $group_user;
  20.     /**
  21.      * @ORM\Column(type="smallint")
  22.      */
  23.     private $group_part;
  24.     /**
  25.      * @ORM\Column(type="smallint")
  26.      */
  27.     private $group_order;
  28.     /**
  29.      * @ORM\Column(type="smallint")
  30.      */
  31.     private $group_collab_ext;
  32.     /**
  33.      * @ORM\Column(type="smallint")
  34.      */
  35.     private $group_library;
  36.     public function getId(): ?int
  37.     {
  38.         return $this->id;
  39.     }
  40.     public function getGroupUser(): ?int
  41.     {
  42.         return $this->group_user;
  43.     }
  44.     public function setGroupUser(int $group_user): self
  45.     {
  46.         $this->group_user $group_user;
  47.         return $this;
  48.     }
  49.     public function getGroupPart(): ?int
  50.     {
  51.         return $this->group_part;
  52.     }
  53.     public function setGroupPart(int $group_part): self
  54.     {
  55.         $this->group_part $group_part;
  56.         return $this;
  57.     }
  58.     public function getGroupOrder(): ?int
  59.     {
  60.         return $this->group_order;
  61.     }
  62.     public function setGroupOrder(int $group_order): self
  63.     {
  64.         $this->group_order $group_order;
  65.         return $this;
  66.     }
  67.     public function getGroupCollabExt(): ?int
  68.     {
  69.         return $this->group_collab_ext;
  70.     }
  71.     public function setGroupCollabExt(int $group_collab_ext): self
  72.     {
  73.         $this->group_collab_ext $group_collab_ext;
  74.         return $this;
  75.     }
  76.     public function getGroupLibrary(): ?int
  77.     {
  78.         return $this->group_library;
  79.     }
  80.     public function setGroupLibrary(int $group_library): self
  81.     {
  82.         $this->group_library $group_library;
  83.         return $this;
  84.     }
  85. }