src/Entity/SiteReseaux.php line 9

Open in your IDE?
  1. <?php
  2. namespace Acme\SudcmsBundle\Entity;
  3. use Acme\SudcmsBundle\Repository\SiteReseauxRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassSiteReseauxRepository::class)]
  6. class SiteReseaux
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'string'length255nullabletrue)]
  13.     private $acc_res_entitled;
  14.     #[ORM\Column(type'string'length255nullabletrue)]
  15.     private $acc_res_link;
  16.     #[ORM\Column(type'smallint')]
  17.     private $acc_res_active;
  18.     #[ORM\Column(type'smallint')]
  19.     private $acc_res_thmbnail_type;
  20.     #[ORM\Column(type'string'length255nullabletrue)]
  21.     private $acc_res_class;
  22.     #[ORM\Column(type'string'length2)]
  23.     private $site_lang;
  24.     #[ORM\Column(type'integer')]
  25.     private $site_uid;
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getAccResEntitled(): ?string
  31.     {
  32.         return $this->acc_res_entitled;
  33.     }
  34.     public function setAccResEntitled(?string $acc_res_entitled): self
  35.     {
  36.         $this->acc_res_entitled $acc_res_entitled;
  37.         return $this;
  38.     }
  39.     public function getAccResLink(): ?string
  40.     {
  41.         return $this->acc_res_link;
  42.     }
  43.     public function setAccResLink(?string $acc_res_link): self
  44.     {
  45.         $this->acc_res_link $acc_res_link;
  46.         return $this;
  47.     }
  48.     public function getAccResActive(): ?int
  49.     {
  50.         return $this->acc_res_active;
  51.     }
  52.     public function setAccResActive(int $acc_res_active): self
  53.     {
  54.         $this->acc_res_active $acc_res_active;
  55.         return $this;
  56.     }
  57.     public function getAccResThmbnailType(): ?int
  58.     {
  59.         return $this->acc_res_thmbnail_type;
  60.     }
  61.     public function setAccResThmbnailType(int $acc_res_thmbnail_type): self
  62.     {
  63.         $this->acc_res_thmbnail_type $acc_res_thmbnail_type;
  64.         return $this;
  65.     }
  66.     public function getAccResClass(): ?string
  67.     {
  68.         return $this->acc_res_class;
  69.     }
  70.     public function setAccResClass(?string $acc_res_class): self
  71.     {
  72.         $this->acc_res_class $acc_res_class;
  73.         return $this;
  74.     }
  75.     public function getSiteLang(): ?string
  76.     {
  77.         return $this->site_lang;
  78.     }
  79.     public function setSiteLang(string $site_lang): self
  80.     {
  81.         $this->site_lang $site_lang;
  82.         return $this;
  83.     }
  84.     public function getSiteUid(): ?int
  85.     {
  86.         return $this->site_uid;
  87.     }
  88.     public function setSiteUid(int $site_uid): self
  89.     {
  90.         $this->site_uid $site_uid;
  91.         return $this;
  92.     }
  93. }