Commit 1b0f52b7 by feixiang

feat:用户实体增加isSeller字段

parent 09fbfd56
......@@ -67,6 +67,11 @@ class User
return $this->getValue('token');
}
public function getIsSeller($value)
{
return $this->getValue('isSeller');
}
public function setId($value)
{
$this->setValue('id', $value);
......@@ -120,6 +125,11 @@ class User
$this->setValue('token', $value);
}
public function setIsSeller($value)
{
$this->setValue('isSeller', $value);
}
public function setSubStoreId($value)
{
$this->setValue('subStoreId', $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