<?php
namespace App\Entity\Main;
use Doctrine\ORM\Mapping as ORM;
/**
* TipusOperacio
*
* @ORM\Table(name="tipus_operacio")
* @ORM\Entity(repositoryClass="App\Repository\Main\TipusOperacioRepository")
*/
class TipusOperacio
{
/**
* @var int
*
* @ORM\Column(name="idTipusOperacio", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $idtipusoperacio;
/**
* @var string
*
* @ORM\Column(name="nom", type="string", length=255, nullable=false)
*/
private $nom;
/**
* @var int
*
* @ORM\Column(name="codi", type="integer", nullable=false)
*/
private $codi;
/**
* @var string
*
* @ORM\Column(name="text_seo_ca", type="string", length=255, nullable=false)
*/
private $textSeoCa;
/**
* @var string
*
* @ORM\Column(name="text_seo_es", type="string", length=255, nullable=false)
*/
private $textSeoEs;
/**
* @var string
*
* @ORM\Column(name="text_seo_en", type="string", length=255, nullable=false)
*/
private $textSeoEn;
/**
* @var string
*
* @ORM\Column(name="text_seo_ru", type="string", length=255, nullable=false)
*/
private $textSeoRu;
/**
* @var string
*
* @ORM\Column(name="text_seo_de", type="string", length=255, nullable=false)
*/
private $textSeoDe;
/**
* @var string
*
* @ORM\Column(name="text_seo_fr", type="string", length=255, nullable=false)
*/
private $textSeoFr;
/**
* @var string
*
* @ORM\Column(name="text_seo_ch", type="string", length=255, nullable=false)
*/
private $textSeoCh;
/**
* @var string
*
* @ORM\Column(name="text_seo_ar", type="string", length=255, nullable=false)
*/
private $textSeoAr;
/**
* @var string
*
* @ORM\Column(name="text_mapa_ca", type="string", length=255, nullable=false)
*/
private $textMapaCa;
/**
* @var string
*
* @ORM\Column(name="text_mapa_es", type="string", length=255, nullable=false)
*/
private $textMapaEs;
/**
* @var string
*
* @ORM\Column(name="text_mapa_en", type="string", length=255, nullable=false)
*/
private $textMapaEn;
/**
* @var string
*
* @ORM\Column(name="text_mapa_ru", type="string", length=255, nullable=false)
*/
private $textMapaRu;
/**
* @var string
*
* @ORM\Column(name="text_mapa_de", type="string", length=255, nullable=false)
*/
private $textMapaDe;
/**
* @var string
*
* @ORM\Column(name="text_mapa_fr", type="string", length=255, nullable=false)
*/
private $textMapaFr;
/**
* @var string
*
* @ORM\Column(name="text_mapa_ch", type="string", length=255, nullable=false)
*/
private $textMapaCh;
/**
* @var string
*
* @ORM\Column(name="text_mapa_ar", type="string", length=255, nullable=false)
*/
private $textMapaAr;
/**
* @var string
*
* @ORM\Column(name="friendly_ca", type="string", length=255, nullable=false)
*/
private $friendlyCa;
/**
* @var string
*
* @ORM\Column(name="friendly_es", type="string", length=255, nullable=false)
*/
private $friendlyEs;
/**
* @var string
*
* @ORM\Column(name="friendly_en", type="string", length=255, nullable=false)
*/
private $friendlyEn;
/**
* @var string
*
* @ORM\Column(name="friendly_ru", type="string", length=255, nullable=false)
*/
private $friendlyRu;
/**
* @var string
*
* @ORM\Column(name="friendly_de", type="string", length=255, nullable=false)
*/
private $friendlyDe;
/**
* @var string
*
* @ORM\Column(name="friendly_fr", type="string", length=255, nullable=false)
*/
private $friendlyFr;
/**
* @var string
*
* @ORM\Column(name="friendly_ch", type="string", length=255, nullable=false)
*/
private $friendlyCh;
/**
* @var string
*
* @ORM\Column(name="friendly_ar", type="string", length=255, nullable=false)
*/
private $friendlyAr;
public function getIdtipusoperacio(): ?int
{
return $this->idtipusoperacio;
}
public function getNom(): ?string
{
return $this->nom;
}
public function setNom(string $nom): self
{
$this->nom = $nom;
return $this;
}
public function getCodi(): ?int
{
return $this->codi;
}
public function setCodi(int $codi): self
{
$this->codi = $codi;
return $this;
}
public function getTextSeoCa(): ?string
{
return $this->textSeoCa;
}
public function setTextSeoCa(string $textSeoCa): self
{
$this->textSeoCa = $textSeoCa;
return $this;
}
public function getTextSeoEs(): ?string
{
return $this->textSeoEs;
}
public function setTextSeoEs(string $textSeoEs): self
{
$this->textSeoEs = $textSeoEs;
return $this;
}
public function getTextSeoEn(): ?string
{
return $this->textSeoEn;
}
public function setTextSeoEn(string $textSeoEn): self
{
$this->textSeoEn = $textSeoEn;
return $this;
}
public function getTextSeoRu(): ?string
{
return $this->textSeoRu;
}
public function setTextSeoRu(string $textSeoRu): self
{
$this->textSeoRu = $textSeoRu;
return $this;
}
public function getTextSeoDe(): ?string
{
return $this->textSeoDe;
}
public function setTextSeoDe(string $textSeoDe): self
{
$this->textSeoDe = $textSeoDe;
return $this;
}
public function getTextSeoFr(): ?string
{
return $this->textSeoFr;
}
public function setTextSeoFr(string $textSeoFr): self
{
$this->textSeoFr = $textSeoFr;
return $this;
}
public function getTextSeoCh(): ?string
{
return $this->textSeoCh;
}
public function setTextSeoCh(string $textSeoCh): self
{
$this->textSeoCh = $textSeoCh;
return $this;
}
public function getTextSeoAr(): ?string
{
return $this->textSeoAr;
}
public function setTextSeoAr(string $textSeoAr): self
{
$this->textSeoAr = $textSeoAr;
return $this;
}
public function getTextMapaCa(): ?string
{
return $this->textMapaCa;
}
public function setTextMapaCa(string $textMapaCa): self
{
$this->textMapaCa = $textMapaCa;
return $this;
}
public function getTextMapaEs(): ?string
{
return $this->textMapaEs;
}
public function setTextMapaEs(string $textMapaEs): self
{
$this->textMapaEs = $textMapaEs;
return $this;
}
public function getTextMapaEn(): ?string
{
return $this->textMapaEn;
}
public function setTextMapaEn(string $textMapaEn): self
{
$this->textMapaEn = $textMapaEn;
return $this;
}
public function getTextMapaRu(): ?string
{
return $this->textMapaRu;
}
public function setTextMapaRu(string $textMapaRu): self
{
$this->textMapaRu = $textMapaRu;
return $this;
}
public function getTextMapaDe(): ?string
{
return $this->textMapaDe;
}
public function setTextMapaDe(string $textMapaDe): self
{
$this->textMapaDe = $textMapaDe;
return $this;
}
public function getTextMapaFr(): ?string
{
return $this->textMapaFr;
}
public function setTextMapaFr(string $textMapaFr): self
{
$this->textMapaFr = $textMapaFr;
return $this;
}
public function getTextMapaCh(): ?string
{
return $this->textMapaCh;
}
public function setTextMapaCh(string $textMapaCh): self
{
$this->textMapaCh = $textMapaCh;
return $this;
}
public function getTextMapaAr(): ?string
{
return $this->textMapaAr;
}
public function setTextMapaAr(string $textMapaAr): self
{
$this->textMapaAr = $textMapaAr;
return $this;
}
public function getFriendlyCa(): ?string
{
return $this->friendlyCa;
}
public function setFriendlyCa(string $friendlyCa): self
{
$this->friendlyCa = $friendlyCa;
return $this;
}
public function getFriendlyEs(): ?string
{
return $this->friendlyEs;
}
public function setFriendlyEs(string $friendlyEs): self
{
$this->friendlyEs = $friendlyEs;
return $this;
}
public function getFriendlyEn(): ?string
{
return $this->friendlyEn;
}
public function setFriendlyEn(string $friendlyEn): self
{
$this->friendlyEn = $friendlyEn;
return $this;
}
public function getFriendlyRu(): ?string
{
return $this->friendlyRu;
}
public function setFriendlyRu(string $friendlyRu): self
{
$this->friendlyRu = $friendlyRu;
return $this;
}
public function getFriendlyDe(): ?string
{
return $this->friendlyDe;
}
public function setFriendlyDe(string $friendlyDe): self
{
$this->friendlyDe = $friendlyDe;
return $this;
}
public function getFriendlyFr(): ?string
{
return $this->friendlyFr;
}
public function setFriendlyFr(string $friendlyFr): self
{
$this->friendlyFr = $friendlyFr;
return $this;
}
public function getFriendlyCh(): ?string
{
return $this->friendlyCh;
}
public function setFriendlyCh(string $friendlyCh): self
{
$this->friendlyCh = $friendlyCh;
return $this;
}
public function getFriendlyAr(): ?string
{
return $this->friendlyAr;
}
public function setFriendlyAr(string $friendlyAr): self
{
$this->friendlyAr = $friendlyAr;
return $this;
}
}