<?phpnamespace Acme\SudcmsBundle\Entity;use Acme\SudcmsBundle\Repository\SiteReseauxRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: SiteReseauxRepository::class)]class SiteReseaux{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'integer')] private $id; #[ORM\Column(type: 'string', length: 255, nullable: true)] private $acc_res_entitled; #[ORM\Column(type: 'string', length: 255, nullable: true)] private $acc_res_link; #[ORM\Column(type: 'smallint')] private $acc_res_active; #[ORM\Column(type: 'smallint')] private $acc_res_thmbnail_type; #[ORM\Column(type: 'string', length: 255, nullable: true)] private $acc_res_class; #[ORM\Column(type: 'string', length: 2)] private $site_lang; #[ORM\Column(type: 'integer')] private $site_uid; public function getId(): ?int { return $this->id; } public function getAccResEntitled(): ?string { return $this->acc_res_entitled; } public function setAccResEntitled(?string $acc_res_entitled): self { $this->acc_res_entitled = $acc_res_entitled; return $this; } public function getAccResLink(): ?string { return $this->acc_res_link; } public function setAccResLink(?string $acc_res_link): self { $this->acc_res_link = $acc_res_link; return $this; } public function getAccResActive(): ?int { return $this->acc_res_active; } public function setAccResActive(int $acc_res_active): self { $this->acc_res_active = $acc_res_active; return $this; } public function getAccResThmbnailType(): ?int { return $this->acc_res_thmbnail_type; } public function setAccResThmbnailType(int $acc_res_thmbnail_type): self { $this->acc_res_thmbnail_type = $acc_res_thmbnail_type; return $this; } public function getAccResClass(): ?string { return $this->acc_res_class; } public function setAccResClass(?string $acc_res_class): self { $this->acc_res_class = $acc_res_class; return $this; } public function getSiteLang(): ?string { return $this->site_lang; } public function setSiteLang(string $site_lang): self { $this->site_lang = $site_lang; return $this; } public function getSiteUid(): ?int { return $this->site_uid; } public function setSiteUid(int $site_uid): self { $this->site_uid = $site_uid; return $this; }}