Commit c9df4ecd by zhufx

用户实体昵称修改该

parent cf46c43f
...@@ -30,7 +30,7 @@ class User ...@@ -30,7 +30,7 @@ class User
{ {
private $id; private $id;
private $nickName; private $nickname;
private $storeId; private $storeId;
...@@ -39,7 +39,7 @@ class User ...@@ -39,7 +39,7 @@ class User
private $token; private $token;
private $cmId; private $cmId;
private $sessionKey; private $sessionKey;
private $scope; private $scope;
...@@ -47,7 +47,7 @@ class User ...@@ -47,7 +47,7 @@ class User
private $referId; private $referId;
private $unionid; private $unionid;
private $openId; private $openId;
...@@ -60,9 +60,9 @@ class User ...@@ -60,9 +60,9 @@ class User
return $this->id; return $this->id;
} }
public function getNickName() public function getNickname()
{ {
return $this->nickName; return $this->nickname;
} }
public function getStoreId() public function getStoreId()
...@@ -85,9 +85,9 @@ class User ...@@ -85,9 +85,9 @@ class User
return $this->id = $value; return $this->id = $value;
} }
public function setNickName($value) public function setNickname($value)
{ {
return $this->nickName = $value; return $this->nickname = $value;
} }
public function setStoreId($value) public function setStoreId($value)
...@@ -159,8 +159,8 @@ class User ...@@ -159,8 +159,8 @@ class User
{ {
return $this->cmId; return $this->cmId;
} }
public function fill($arr) public function fill($arr)
{ {
foreach ($arr as $name => $value) { foreach ($arr as $name => $value) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment