Commit bd11b2c1 by 王召彬
parents f14fbd56 9e5442b4
......@@ -30,7 +30,7 @@ class User
{
private $id;
private $nickName;
private $nickname;
private $storeId;
......@@ -60,9 +60,9 @@ class User
return $this->id;
}
public function getNickName()
public function getNickname()
{
return $this->nickName;
return $this->nickname;
}
public function getStoreId()
......@@ -85,9 +85,9 @@ class User
return $this->id = $value;
}
public function setNickName($value)
public function setNickname($value)
{
return $this->nickName = $value;
return $this->nickname = $value;
}
public function setStoreId($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