|
|
@@ -13,6 +13,7 @@ class SharedProsperityUserEntity extends DataEntity
|
|
13
|
13
|
public $consumerStocks = null; // 消费股
|
|
14
|
14
|
public $withdrawalLimit = null; // 提现额度
|
|
15
|
15
|
public $partnerLevel = null; // 合伙人等级
|
|
|
16
|
+ public $points = null;
|
|
16
|
17
|
public $createTime = null; // 创建时间
|
|
17
|
18
|
public $updateTime = null; // 更新时间
|
|
18
|
19
|
|
|
|
@@ -142,6 +143,17 @@ class SharedProsperityUserEntity extends DataEntity
|
|
142
|
143
|
return $this;
|
|
143
|
144
|
}
|
|
144
|
145
|
|
|
|
146
|
+ public function getPoints()
|
|
|
147
|
+ {
|
|
|
148
|
+ return $this->points;
|
|
|
149
|
+ }
|
|
|
150
|
+
|
|
|
151
|
+ public function setPoints($points): SharedProsperityUserEntity
|
|
|
152
|
+ {
|
|
|
153
|
+ $this->points = $points;
|
|
|
154
|
+ return $this;
|
|
|
155
|
+ }
|
|
|
156
|
+
|
|
145
|
157
|
/**
|
|
146
|
158
|
* @return mixed
|
|
147
|
159
|
*/
|