| 1 | <?php |
||
| 19 | class UserMetaEntity implements DataEntityInterface |
||
| 20 | { |
||
| 21 | /** @var int */ |
||
| 22 | private $userMetaId; |
||
| 23 | /** @var int */ |
||
| 24 | private $userId; |
||
| 25 | /** @var string */ |
||
| 26 | private $metaKey; |
||
| 27 | /** @var string */ |
||
| 28 | private $metaData; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Gets the value of the entity identifier. |
||
| 32 | * |
||
| 33 | * @return int |
||
| 34 | */ |
||
| 35 | 1 | public function getKeyData() |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @param int $userMetaId |
||
| 42 | * |
||
| 43 | * @return UserMetaEntity |
||
| 44 | */ |
||
| 45 | 7 | public function setUserMetaId($userMetaId) |
|
| 51 | |||
| 52 | /** |
||
| 53 | * @return int |
||
| 54 | */ |
||
| 55 | 3 | public function getUserMetaId() |
|
| 59 | |||
| 60 | /** |
||
| 61 | * @param int $userId |
||
| 62 | * |
||
| 63 | * @return UserMetaEntity |
||
| 64 | */ |
||
| 65 | 6 | public function setUserId($userId) |
|
| 71 | |||
| 72 | /** |
||
| 73 | * @return int |
||
| 74 | */ |
||
| 75 | 2 | public function getUserId() |
|
| 79 | |||
| 80 | /** |
||
| 81 | * @param string $metaKey |
||
| 82 | * |
||
| 83 | * @return UserMetaEntity |
||
| 84 | */ |
||
| 85 | 4 | public function setMetaKey($metaKey) |
|
| 91 | |||
| 92 | /** |
||
| 93 | * @return string |
||
| 94 | */ |
||
| 95 | 3 | public function getMetaKey() |
|
| 99 | |||
| 100 | /** |
||
| 101 | * @param mixed $metaData |
||
| 102 | * |
||
| 103 | * @return UserMetaEntity |
||
| 104 | */ |
||
| 105 | 4 | public function setMetaData($metaData) |
|
| 111 | |||
| 112 | /** |
||
| 113 | * @return string |
||
| 114 | */ |
||
| 115 | 3 | public function getMetaData() |
|
| 119 | } |
||
| 120 |