<?php
namespace App\Entity\Main;
use Doctrine\ORM\Mapping as ORM;
/**
* ApiPropertiesSupertypeI18n
*
* @ORM\Table(name="api_properties_supertype_i18n")
* @ORM\Entity(repositoryClass="App\Repository\Main\ApiPropertiesSupertypeI18nRepository")
*/
class ApiPropertiesSupertypeI18n
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="NONE")
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="cod_lang", type="string", length=6, nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="NONE")
*/
private $codLang;
/**
* @var string|null
*
* @ORM\Column(name="text_seo", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $textSeo = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="text", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $text = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="friendly", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $friendly = 'NULL';
public function getId(): ?int
{
return $this->id;
}
public function getCodLang(): ?string
{
return $this->codLang;
}
public function getTextSeo(): ?string
{
return $this->textSeo;
}
public function setTextSeo(?string $textSeo): self
{
$this->textSeo = $textSeo;
return $this;
}
public function getText(): ?string
{
return $this->text;
}
public function setText(?string $text): self
{
$this->text = $text;
return $this;
}
public function getFriendly(): ?string
{
return $this->friendly;
}
public function setFriendly(?string $friendly): self
{
$this->friendly = $friendly;
return $this;
}
}