<?php
namespace Acme\SudcmsBundle\Entity;
use Acme\SudcmsBundle\Repository\SiteLangRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: SiteLangRepository::class)]
class SiteLang
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'integer')]
private $siteId;
#[ORM\Column(type: 'string', length: 15)]
private $siteLang;
public function getId(): ?int
{
return $this->id;
}
public function getSiteId(): ?int
{
return $this->siteId;
}
public function setSiteId(int $siteId): self
{
$this->siteId = $siteId;
return $this;
}
public function getSiteLang(): ?string
{
return $this->siteLang;
}
public function setSiteLang(string $siteLang): self
{
$this->siteLang = $siteLang;
return $this;
}
}