| 1 | <?php |
||
| 19 | class UserMetaEntity implements DataEntityInterface |
||
| 20 | { |
||
| 21 | /** @var string */ |
||
| 22 | private $userMetaId; |
||
| 23 | /** @var string */ |
||
| 24 | private $userId; |
||
| 25 | /** @var string */ |
||
| 26 | private $metaKey; |
||
| 27 | /** @var string */ |
||
| 28 | private $metaData; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param mixed $userMetaId |
||
| 32 | * |
||
| 33 | * @return UserMetaEntity |
||
| 34 | */ |
||
| 35 | 6 | public function setUserMetaId($userMetaId) |
|
| 36 | { |
||
| 37 | 6 | $this->userMetaId = $userMetaId; |
|
| 38 | |||
| 39 | 6 | return $this; |
|
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return string |
||
| 44 | */ |
||
| 45 | 2 | public function getUserMetaId() |
|
| 46 | { |
||
| 47 | 2 | return $this->userMetaId; |
|
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @param mixed $userId |
||
| 52 | * |
||
| 53 | * @return UserMetaEntity |
||
| 54 | */ |
||
| 55 | 6 | public function setUserId($userId) |
|
| 56 | { |
||
| 57 | 6 | $this->userId = $userId; |
|
| 58 | |||
| 59 | 6 | return $this; |
|
| 60 | } |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @return string |
||
| 64 | */ |
||
| 65 | 2 | public function getUserId() |
|
| 66 | { |
||
| 67 | 2 | return $this->userId; |
|
| 68 | } |
||
| 69 | |||
| 70 | /** |
||
| 71 | * @param string $metaKey |
||
| 72 | * |
||
| 73 | * @return UserMetaEntity |
||
| 74 | */ |
||
| 75 | 4 | public function setMetaKey($metaKey) |
|
| 76 | { |
||
| 77 | 4 | $this->metaKey = $metaKey; |
|
| 78 | |||
| 79 | 4 | return $this; |
|
| 80 | } |
||
| 81 | |||
| 82 | /** |
||
| 83 | * @return string |
||
| 84 | */ |
||
| 85 | 3 | public function getMetaKey() |
|
| 89 | |||
| 90 | /** |
||
| 91 | * @param mixed $metaData |
||
| 92 | * |
||
| 93 | * @return UserMetaEntity |
||
| 94 | */ |
||
| 95 | 4 | public function setMetaData($metaData) |
|
| 101 | |||
| 102 | /** |
||
| 103 | * @return string |
||
| 104 | */ |
||
| 105 | 3 | public function getMetaData() |
|
| 109 | } |
||
| 110 |