src/Entity/Main/TipusOperacio.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Main;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * TipusOperacio
  6.  *
  7.  * @ORM\Table(name="tipus_operacio")
  8.  * @ORM\Entity(repositoryClass="App\Repository\Main\TipusOperacioRepository")
  9.  */
  10. class TipusOperacio
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="idTipusOperacio", type="integer", nullable=false)
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="IDENTITY")
  18.      */
  19.     private $idtipusoperacio;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="nom", type="string", length=255, nullable=false)
  24.      */
  25.     private $nom;
  26.     /**
  27.      * @var int
  28.      *
  29.      * @ORM\Column(name="codi", type="integer", nullable=false)
  30.      */
  31.     private $codi;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="text_seo_ca", type="string", length=255, nullable=false)
  36.      */
  37.     private $textSeoCa;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="text_seo_es", type="string", length=255, nullable=false)
  42.      */
  43.     private $textSeoEs;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="text_seo_en", type="string", length=255, nullable=false)
  48.      */
  49.     private $textSeoEn;
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(name="text_seo_ru", type="string", length=255, nullable=false)
  54.      */
  55.     private $textSeoRu;
  56.     /**
  57.      * @var string
  58.      *
  59.      * @ORM\Column(name="text_seo_de", type="string", length=255, nullable=false)
  60.      */
  61.     private $textSeoDe;
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="text_seo_fr", type="string", length=255, nullable=false)
  66.      */
  67.     private $textSeoFr;
  68.     /**
  69.      * @var string
  70.      *
  71.      * @ORM\Column(name="text_seo_ch", type="string", length=255, nullable=false)
  72.      */
  73.     private $textSeoCh;
  74.     /**
  75.      * @var string
  76.      *
  77.      * @ORM\Column(name="text_seo_ar", type="string", length=255, nullable=false)
  78.      */
  79.     private $textSeoAr;
  80.     /**
  81.      * @var string
  82.      *
  83.      * @ORM\Column(name="text_mapa_ca", type="string", length=255, nullable=false)
  84.      */
  85.     private $textMapaCa;
  86.     /**
  87.      * @var string
  88.      *
  89.      * @ORM\Column(name="text_mapa_es", type="string", length=255, nullable=false)
  90.      */
  91.     private $textMapaEs;
  92.     /**
  93.      * @var string
  94.      *
  95.      * @ORM\Column(name="text_mapa_en", type="string", length=255, nullable=false)
  96.      */
  97.     private $textMapaEn;
  98.     /**
  99.      * @var string
  100.      *
  101.      * @ORM\Column(name="text_mapa_ru", type="string", length=255, nullable=false)
  102.      */
  103.     private $textMapaRu;
  104.     /**
  105.      * @var string
  106.      *
  107.      * @ORM\Column(name="text_mapa_de", type="string", length=255, nullable=false)
  108.      */
  109.     private $textMapaDe;
  110.     /**
  111.      * @var string
  112.      *
  113.      * @ORM\Column(name="text_mapa_fr", type="string", length=255, nullable=false)
  114.      */
  115.     private $textMapaFr;
  116.     /**
  117.      * @var string
  118.      *
  119.      * @ORM\Column(name="text_mapa_ch", type="string", length=255, nullable=false)
  120.      */
  121.     private $textMapaCh;
  122.     /**
  123.      * @var string
  124.      *
  125.      * @ORM\Column(name="text_mapa_ar", type="string", length=255, nullable=false)
  126.      */
  127.     private $textMapaAr;
  128.     /**
  129.      * @var string
  130.      *
  131.      * @ORM\Column(name="friendly_ca", type="string", length=255, nullable=false)
  132.      */
  133.     private $friendlyCa;
  134.     /**
  135.      * @var string
  136.      *
  137.      * @ORM\Column(name="friendly_es", type="string", length=255, nullable=false)
  138.      */
  139.     private $friendlyEs;
  140.     /**
  141.      * @var string
  142.      *
  143.      * @ORM\Column(name="friendly_en", type="string", length=255, nullable=false)
  144.      */
  145.     private $friendlyEn;
  146.     /**
  147.      * @var string
  148.      *
  149.      * @ORM\Column(name="friendly_ru", type="string", length=255, nullable=false)
  150.      */
  151.     private $friendlyRu;
  152.     /**
  153.      * @var string
  154.      *
  155.      * @ORM\Column(name="friendly_de", type="string", length=255, nullable=false)
  156.      */
  157.     private $friendlyDe;
  158.     /**
  159.      * @var string
  160.      *
  161.      * @ORM\Column(name="friendly_fr", type="string", length=255, nullable=false)
  162.      */
  163.     private $friendlyFr;
  164.     /**
  165.      * @var string
  166.      *
  167.      * @ORM\Column(name="friendly_ch", type="string", length=255, nullable=false)
  168.      */
  169.     private $friendlyCh;
  170.     /**
  171.      * @var string
  172.      *
  173.      * @ORM\Column(name="friendly_ar", type="string", length=255, nullable=false)
  174.      */
  175.     private $friendlyAr;
  176.     public function getIdtipusoperacio(): ?int
  177.     {
  178.         return $this->idtipusoperacio;
  179.     }
  180.     public function getNom(): ?string
  181.     {
  182.         return $this->nom;
  183.     }
  184.     public function setNom(string $nom): self
  185.     {
  186.         $this->nom $nom;
  187.         return $this;
  188.     }
  189.     public function getCodi(): ?int
  190.     {
  191.         return $this->codi;
  192.     }
  193.     public function setCodi(int $codi): self
  194.     {
  195.         $this->codi $codi;
  196.         return $this;
  197.     }
  198.     public function getTextSeoCa(): ?string
  199.     {
  200.         return $this->textSeoCa;
  201.     }
  202.     public function setTextSeoCa(string $textSeoCa): self
  203.     {
  204.         $this->textSeoCa $textSeoCa;
  205.         return $this;
  206.     }
  207.     public function getTextSeoEs(): ?string
  208.     {
  209.         return $this->textSeoEs;
  210.     }
  211.     public function setTextSeoEs(string $textSeoEs): self
  212.     {
  213.         $this->textSeoEs $textSeoEs;
  214.         return $this;
  215.     }
  216.     public function getTextSeoEn(): ?string
  217.     {
  218.         return $this->textSeoEn;
  219.     }
  220.     public function setTextSeoEn(string $textSeoEn): self
  221.     {
  222.         $this->textSeoEn $textSeoEn;
  223.         return $this;
  224.     }
  225.     public function getTextSeoRu(): ?string
  226.     {
  227.         return $this->textSeoRu;
  228.     }
  229.     public function setTextSeoRu(string $textSeoRu): self
  230.     {
  231.         $this->textSeoRu $textSeoRu;
  232.         return $this;
  233.     }
  234.     public function getTextSeoDe(): ?string
  235.     {
  236.         return $this->textSeoDe;
  237.     }
  238.     public function setTextSeoDe(string $textSeoDe): self
  239.     {
  240.         $this->textSeoDe $textSeoDe;
  241.         return $this;
  242.     }
  243.     public function getTextSeoFr(): ?string
  244.     {
  245.         return $this->textSeoFr;
  246.     }
  247.     public function setTextSeoFr(string $textSeoFr): self
  248.     {
  249.         $this->textSeoFr $textSeoFr;
  250.         return $this;
  251.     }
  252.     public function getTextSeoCh(): ?string
  253.     {
  254.         return $this->textSeoCh;
  255.     }
  256.     public function setTextSeoCh(string $textSeoCh): self
  257.     {
  258.         $this->textSeoCh $textSeoCh;
  259.         return $this;
  260.     }
  261.     public function getTextSeoAr(): ?string
  262.     {
  263.         return $this->textSeoAr;
  264.     }
  265.     public function setTextSeoAr(string $textSeoAr): self
  266.     {
  267.         $this->textSeoAr $textSeoAr;
  268.         return $this;
  269.     }
  270.     public function getTextMapaCa(): ?string
  271.     {
  272.         return $this->textMapaCa;
  273.     }
  274.     public function setTextMapaCa(string $textMapaCa): self
  275.     {
  276.         $this->textMapaCa $textMapaCa;
  277.         return $this;
  278.     }
  279.     public function getTextMapaEs(): ?string
  280.     {
  281.         return $this->textMapaEs;
  282.     }
  283.     public function setTextMapaEs(string $textMapaEs): self
  284.     {
  285.         $this->textMapaEs $textMapaEs;
  286.         return $this;
  287.     }
  288.     public function getTextMapaEn(): ?string
  289.     {
  290.         return $this->textMapaEn;
  291.     }
  292.     public function setTextMapaEn(string $textMapaEn): self
  293.     {
  294.         $this->textMapaEn $textMapaEn;
  295.         return $this;
  296.     }
  297.     public function getTextMapaRu(): ?string
  298.     {
  299.         return $this->textMapaRu;
  300.     }
  301.     public function setTextMapaRu(string $textMapaRu): self
  302.     {
  303.         $this->textMapaRu $textMapaRu;
  304.         return $this;
  305.     }
  306.     public function getTextMapaDe(): ?string
  307.     {
  308.         return $this->textMapaDe;
  309.     }
  310.     public function setTextMapaDe(string $textMapaDe): self
  311.     {
  312.         $this->textMapaDe $textMapaDe;
  313.         return $this;
  314.     }
  315.     public function getTextMapaFr(): ?string
  316.     {
  317.         return $this->textMapaFr;
  318.     }
  319.     public function setTextMapaFr(string $textMapaFr): self
  320.     {
  321.         $this->textMapaFr $textMapaFr;
  322.         return $this;
  323.     }
  324.     public function getTextMapaCh(): ?string
  325.     {
  326.         return $this->textMapaCh;
  327.     }
  328.     public function setTextMapaCh(string $textMapaCh): self
  329.     {
  330.         $this->textMapaCh $textMapaCh;
  331.         return $this;
  332.     }
  333.     public function getTextMapaAr(): ?string
  334.     {
  335.         return $this->textMapaAr;
  336.     }
  337.     public function setTextMapaAr(string $textMapaAr): self
  338.     {
  339.         $this->textMapaAr $textMapaAr;
  340.         return $this;
  341.     }
  342.     public function getFriendlyCa(): ?string
  343.     {
  344.         return $this->friendlyCa;
  345.     }
  346.     public function setFriendlyCa(string $friendlyCa): self
  347.     {
  348.         $this->friendlyCa $friendlyCa;
  349.         return $this;
  350.     }
  351.     public function getFriendlyEs(): ?string
  352.     {
  353.         return $this->friendlyEs;
  354.     }
  355.     public function setFriendlyEs(string $friendlyEs): self
  356.     {
  357.         $this->friendlyEs $friendlyEs;
  358.         return $this;
  359.     }
  360.     public function getFriendlyEn(): ?string
  361.     {
  362.         return $this->friendlyEn;
  363.     }
  364.     public function setFriendlyEn(string $friendlyEn): self
  365.     {
  366.         $this->friendlyEn $friendlyEn;
  367.         return $this;
  368.     }
  369.     public function getFriendlyRu(): ?string
  370.     {
  371.         return $this->friendlyRu;
  372.     }
  373.     public function setFriendlyRu(string $friendlyRu): self
  374.     {
  375.         $this->friendlyRu $friendlyRu;
  376.         return $this;
  377.     }
  378.     public function getFriendlyDe(): ?string
  379.     {
  380.         return $this->friendlyDe;
  381.     }
  382.     public function setFriendlyDe(string $friendlyDe): self
  383.     {
  384.         $this->friendlyDe $friendlyDe;
  385.         return $this;
  386.     }
  387.     public function getFriendlyFr(): ?string
  388.     {
  389.         return $this->friendlyFr;
  390.     }
  391.     public function setFriendlyFr(string $friendlyFr): self
  392.     {
  393.         $this->friendlyFr $friendlyFr;
  394.         return $this;
  395.     }
  396.     public function getFriendlyCh(): ?string
  397.     {
  398.         return $this->friendlyCh;
  399.     }
  400.     public function setFriendlyCh(string $friendlyCh): self
  401.     {
  402.         $this->friendlyCh $friendlyCh;
  403.         return $this;
  404.     }
  405.     public function getFriendlyAr(): ?string
  406.     {
  407.         return $this->friendlyAr;
  408.     }
  409.     public function setFriendlyAr(string $friendlyAr): self
  410.     {
  411.         $this->friendlyAr $friendlyAr;
  412.         return $this;
  413.     }
  414. }