<?php
namespace App\Entity;
use App\Repository\NotificationsConfigRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=NotificationsConfigRepository::class)
*/
class NotificationsConfig
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="smallint")
*/
private $group_user;
/**
* @ORM\Column(type="smallint")
*/
private $group_part;
/**
* @ORM\Column(type="smallint")
*/
private $group_order;
/**
* @ORM\Column(type="smallint")
*/
private $group_collab_ext;
/**
* @ORM\Column(type="smallint")
*/
private $group_library;
public function getId(): ?int
{
return $this->id;
}
public function getGroupUser(): ?int
{
return $this->group_user;
}
public function setGroupUser(int $group_user): self
{
$this->group_user = $group_user;
return $this;
}
public function getGroupPart(): ?int
{
return $this->group_part;
}
public function setGroupPart(int $group_part): self
{
$this->group_part = $group_part;
return $this;
}
public function getGroupOrder(): ?int
{
return $this->group_order;
}
public function setGroupOrder(int $group_order): self
{
$this->group_order = $group_order;
return $this;
}
public function getGroupCollabExt(): ?int
{
return $this->group_collab_ext;
}
public function setGroupCollabExt(int $group_collab_ext): self
{
$this->group_collab_ext = $group_collab_ext;
return $this;
}
public function getGroupLibrary(): ?int
{
return $this->group_library;
}
public function setGroupLibrary(int $group_library): self
{
$this->group_library = $group_library;
return $this;
}
}