src/Entity/DnsitTranslateProductCategory.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * DnsitTranslateProductCategory
  6.  *
  7.  * @ORM\Table(name="dnsit_translate_product_category")
  8.  * @ORM\Entity
  9.  */
  10. class DnsitTranslateProductCategory
  11. {
  12.     /**
  13.      * @var string|null
  14.      *
  15.      * @ORM\Column(name="en_name", type="string", length=255, nullable=true)
  16.      */
  17.     private $enName;
  18.     /**
  19.      * @var string|null
  20.      *
  21.      * @ORM\Column(name="de_name", type="string", length=255, nullable=true)
  22.      */
  23.     private $deName;
  24.     /**
  25.      * @var string|null
  26.      *
  27.      * @ORM\Column(name="nl_name", type="string", length=255, nullable=true)
  28.      */
  29.     private $nlName;
  30.     /**
  31.      * @var string|null
  32.      *
  33.      * @ORM\Column(name="it_name", type="string", length=255, nullable=true)
  34.      */
  35.     private $itName;
  36.     /**
  37.      * @var string|null
  38.      *
  39.      * @ORM\Column(name="es_name", type="string", length=255, nullable=true)
  40.      */
  41.     private $esName;
  42.     /**
  43.      * @ORM\Column(type="string", length=255, nullable=true)
  44.      */
  45.     private $ptName;
  46.     /**
  47.      * @var int
  48.      *
  49.      * @ORM\Column(name="id", type="bigint")
  50.      * @ORM\Id
  51.      * @ORM\GeneratedValue(strategy="IDENTITY")
  52.      */
  53.     private $id;
  54.     public function getEnName(): ?string
  55.     {
  56.         return $this->enName;
  57.     }
  58.     public function setEnName(?string $enName): self
  59.     {
  60.         $this->enName $enName;
  61.         return $this;
  62.     }
  63.     public function getDeName(): ?string
  64.     {
  65.         return $this->deName;
  66.     }
  67.     public function setDeName(?string $deName): self
  68.     {
  69.         $this->deName $deName;
  70.         return $this;
  71.     }
  72.     public function getNlName(): ?string
  73.     {
  74.         return $this->nlName;
  75.     }
  76.     public function setNlName(?string $nlName): self
  77.     {
  78.         $this->nlName $nlName;
  79.         return $this;
  80.     }
  81.     public function getItName(): ?string
  82.     {
  83.         return $this->itName;
  84.     }
  85.     public function setItName(?string $itName): self
  86.     {
  87.         $this->itName $itName;
  88.         return $this;
  89.     }
  90.     public function getEsName(): ?string
  91.     {
  92.         return $this->esName;
  93.     }
  94.     public function setEsName(?string $esName): self
  95.     {
  96.         $this->esName $esName;
  97.         return $this;
  98.     }
  99.     public function getPtName(): ?string
  100.     {
  101.         return $this->ptName;
  102.     }
  103.     public function setPtName(?string $ptName): self
  104.     {
  105.         $this->ptName $ptName;
  106.         return $this;
  107.     }
  108.     public function getId(): ?int
  109.     {
  110.         return $this->id;
  111.     }
  112. }