src/Entity/KeyValue.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class KeyValue {
  5.     /**
  6.      * @var int
  7.      */
  8.     private $id;
  9.     /**
  10.      * @var string
  11.      */
  12.     private $keyName;
  13.     /**
  14.      * @var string|null
  15.      */
  16.     private $entryValue;
  17.     /**
  18.      * @var integer
  19.      */
  20.     private $position;    
  21.     
  22.     /**
  23.      * @var \App\Entity\KeyType
  24.      */
  25.     private $keyType;    
  26.     
  27.     /**
  28.      * Get id.
  29.      *
  30.      * @return int
  31.      */
  32.     public function getId() {
  33.         return $this->id;
  34.     }
  35.     /**
  36.      * Set keyName.
  37.      *
  38.      * @param string $keyName
  39.      *
  40.      * @return KeyValue
  41.      */
  42.     public function setKeyName($keyName) {
  43.         $this->keyName $keyName;
  44.         return $this;
  45.     }
  46.     /**
  47.      * Get keyName.
  48.      *
  49.      * @return string
  50.      */
  51.     public function getKeyName() {
  52.         return $this->keyName;
  53.     }
  54.     /**
  55.      * Set entryValue.
  56.      *
  57.      * @param string|null $entryValue
  58.      *
  59.      * @return KeyValue
  60.      */
  61.     public function setEntryValue($entryValue null) {
  62.         $this->entryValue $entryValue;
  63.         return $this;
  64.     }
  65.     /**
  66.      * Get entryValue.
  67.      *
  68.      * @return string|null
  69.      */
  70.     public function getEntryValue() {
  71.         return $this->entryValue;
  72.     }
  73.     /**
  74.      * Set position
  75.      *
  76.      * @param integer $position
  77.      *
  78.      * @return BoPartnerLocation
  79.      */
  80.     public function setPosition($position)
  81.     {
  82.         $this->position $position;
  83.         return $this;
  84.     }
  85.     /**
  86.      * Get position
  87.      *
  88.      * @return integer
  89.      */
  90.     public function getPosition()
  91.     {
  92.         return $this->position;
  93.     }    
  94.     
  95.     /**
  96.      * Set keyType.
  97.      *
  98.      * @param \App\Entity\KeyType $keyType|null
  99.      *
  100.      * @return KeyValue
  101.      */
  102.     public function setKeyType(\App\Entity\KeyType $keyType null)
  103.     {
  104.         $this->keyType $keyType;
  105.         return $this;
  106.     }
  107.     /**
  108.      * Get keyType.
  109.      *
  110.      * @return \App\Entity\KeyType|null
  111.      */
  112.     public function getKeyType()
  113.     {
  114.         return $this->keyType;
  115.     }    
  116. }