src/Entity/LanguageInfo.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Score\BaseBundle\Entity\BaseEntity;
  5. /**
  6.  * @ORM\HasLifecycleCallbacks()
  7.  * @ORM\Entity
  8.  * @ORM\Table(name="cms_language_info")
  9.  */
  10. class LanguageInfo extends BaseEntity
  11. {
  12.    
  13.      /**
  14.      * @ORM\Column(name="id", type="integer")
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue(strategy="AUTO")
  17.      */
  18.     protected $id;
  19.     /**
  20.      * @ORM\Column(name="entity_name", type="string", length=500, nullable=true)
  21.      */
  22.     private $entity;
  23.     /**
  24.      * @ORM\Column(name="entity_id", type="integer", nullable=true)
  25.      */
  26.     private $entityId;
  27.     /**
  28.      * @ORM\Column(name="language", type="string", length=255, nullable=true)
  29.      */
  30.     private $language;
  31.     /**
  32.      * Get the value of id
  33.      */ 
  34.     public function getId()
  35.     {
  36.         return $this->id;
  37.     }
  38.     /**
  39.      * Set the value of id
  40.      *
  41.      * @return  self
  42.      */ 
  43.     public function setId($id)
  44.     {
  45.         $this->id $id;
  46.         return $this;
  47.     }
  48.     /**
  49.      * Get the value of entity
  50.      */ 
  51.     public function getEntity()
  52.     {
  53.         return $this->entity;
  54.     }
  55.     /**
  56.      * Set the value of entity
  57.      *
  58.      * @return  self
  59.      */ 
  60.     public function setEntity($entity)
  61.     {
  62.         $this->entity $entity;
  63.         return $this;
  64.     }
  65.     /**
  66.      * Get the value of entityId
  67.      */ 
  68.     public function getEntityId()
  69.     {
  70.         return $this->entityId;
  71.     }
  72.     /**
  73.      * Set the value of entityId
  74.      *
  75.      * @return  self
  76.      */ 
  77.     public function setEntityId($entityId)
  78.     {
  79.         $this->entityId $entityId;
  80.         return $this;
  81.     }
  82.     /**
  83.      * Get the value of language
  84.      */ 
  85.     public function getLanguage()
  86.     {
  87.         return $this->language;
  88.     }
  89.     /**
  90.      * Set the value of language
  91.      *
  92.      * @return  self
  93.      */ 
  94.     public function setLanguage($language)
  95.     {
  96.         $this->language $language;
  97.         return $this;
  98.     }
  99. }