|
|
@@ -8,19 +8,19 @@ class UserSignScoreEntity extends DataEntity
|
|
8
|
8
|
{
|
|
9
|
9
|
public $id = null; // 自增id
|
|
10
|
10
|
public $uid = null; // 会员id
|
|
11
|
|
- public $continuity_day = null; // 连续签到几天
|
|
12
|
|
- public $reward_score = null; // 赠送积分数量
|
|
13
|
|
- public $signin_time = null; // 签到时间
|
|
14
|
|
- public $source_uid = null; // 赠送积分来源用户id
|
|
|
11
|
+ public $continuityDay = null; // 连续签到几天
|
|
|
12
|
+ public $rewardScore = null; // 赠送积分数量
|
|
|
13
|
+ public $signinTime = null; // 签到时间
|
|
|
14
|
+ public $sourceUid = null; // 赠送积分来源用户id
|
|
15
|
15
|
public $status = null; // 积分状态1-有效 0-失效 -1待确认
|
|
16
|
16
|
public $mark = null; // 备注
|
|
17
|
|
- public $order_id = null; // 订单id
|
|
|
17
|
+ public $orderId = null; // 订单id
|
|
18
|
18
|
public $pm = null; // 1-收入。2-支出
|
|
19
|
19
|
public $surplus = null; // 剩余
|
|
20
|
|
- public $order_type = null; // 订单类型。关联订单ID
|
|
|
20
|
+ public $orderType = null; // 订单类型。关联订单ID
|
|
21
|
21
|
public $addtime = null; // 添加时间
|
|
22
|
|
- public $source_type = null; // 积分类型:1签到,2分享好友注册赠送,3自己下单赠送,4,好友下单赠送,5.购买产品消耗
|
|
23
|
|
- public $settlement_time = null; // 结算时间
|
|
|
22
|
+ public $sourceType = null; // 积分类型:1签到,2分享好友注册赠送,3自己下单赠送,4,好友下单赠送,5.购买产品消耗
|
|
|
23
|
+ public $settlementTime = null; // 结算时间
|
|
24
|
24
|
|
|
25
|
25
|
/**
|
|
26
|
26
|
* @return mixed
|
|
|
@@ -63,16 +63,16 @@ class UserSignScoreEntity extends DataEntity
|
|
63
|
63
|
*/
|
|
64
|
64
|
public function getContinuityDay()
|
|
65
|
65
|
{
|
|
66
|
|
- return $this->continuity_day;
|
|
|
66
|
+ return $this->continuityDay;
|
|
67
|
67
|
}
|
|
68
|
68
|
|
|
69
|
69
|
/**
|
|
70
|
|
- * @param mixed $continuity_day
|
|
|
70
|
+ * @param mixed $continuityDay
|
|
71
|
71
|
* @return UserSignScoreEntity
|
|
72
|
72
|
*/
|
|
73
|
|
- public function setContinuityDay($continuity_day): UserSignScoreEntity
|
|
|
73
|
+ public function setContinuityDay($continuityDay): UserSignScoreEntity
|
|
74
|
74
|
{
|
|
75
|
|
- $this->continuity_day = $continuity_day;
|
|
|
75
|
+ $this->continuityDay = $continuityDay;
|
|
76
|
76
|
return $this;
|
|
77
|
77
|
}
|
|
78
|
78
|
|
|
|
@@ -81,16 +81,16 @@ class UserSignScoreEntity extends DataEntity
|
|
81
|
81
|
*/
|
|
82
|
82
|
public function getRewardScore()
|
|
83
|
83
|
{
|
|
84
|
|
- return $this->reward_score;
|
|
|
84
|
+ return $this->rewardScore;
|
|
85
|
85
|
}
|
|
86
|
86
|
|
|
87
|
87
|
/**
|
|
88
|
|
- * @param mixed $reward_score
|
|
|
88
|
+ * @param mixed $rewardScore
|
|
89
|
89
|
* @return UserSignScoreEntity
|
|
90
|
90
|
*/
|
|
91
|
|
- public function setRewardScore($reward_score): UserSignScoreEntity
|
|
|
91
|
+ public function setRewardScore($rewardScore): UserSignScoreEntity
|
|
92
|
92
|
{
|
|
93
|
|
- $this->reward_score = $reward_score;
|
|
|
93
|
+ $this->rewardScore = $rewardScore;
|
|
94
|
94
|
return $this;
|
|
95
|
95
|
}
|
|
96
|
96
|
|
|
|
@@ -99,16 +99,16 @@ class UserSignScoreEntity extends DataEntity
|
|
99
|
99
|
*/
|
|
100
|
100
|
public function getSigninTime()
|
|
101
|
101
|
{
|
|
102
|
|
- return $this->signin_time;
|
|
|
102
|
+ return $this->signinTime;
|
|
103
|
103
|
}
|
|
104
|
104
|
|
|
105
|
105
|
/**
|
|
106
|
|
- * @param mixed $signin_time
|
|
|
106
|
+ * @param mixed $signinTime
|
|
107
|
107
|
* @return UserSignScoreEntity
|
|
108
|
108
|
*/
|
|
109
|
|
- public function setSigninTime($signin_time): UserSignScoreEntity
|
|
|
109
|
+ public function setSigninTime($signinTime): UserSignScoreEntity
|
|
110
|
110
|
{
|
|
111
|
|
- $this->signin_time = $signin_time;
|
|
|
111
|
+ $this->signinTime = $signinTime;
|
|
112
|
112
|
return $this;
|
|
113
|
113
|
}
|
|
114
|
114
|
|
|
|
@@ -117,16 +117,16 @@ class UserSignScoreEntity extends DataEntity
|
|
117
|
117
|
*/
|
|
118
|
118
|
public function getSourceUid()
|
|
119
|
119
|
{
|
|
120
|
|
- return $this->source_uid;
|
|
|
120
|
+ return $this->sourceUid;
|
|
121
|
121
|
}
|
|
122
|
122
|
|
|
123
|
123
|
/**
|
|
124
|
|
- * @param mixed $source_uid
|
|
|
124
|
+ * @param mixed $sourceUid
|
|
125
|
125
|
* @return UserSignScoreEntity
|
|
126
|
126
|
*/
|
|
127
|
|
- public function setSourceUid($source_uid): UserSignScoreEntity
|
|
|
127
|
+ public function setSourceUid($sourceUid): UserSignScoreEntity
|
|
128
|
128
|
{
|
|
129
|
|
- $this->source_uid = $source_uid;
|
|
|
129
|
+ $this->sourceUid = $sourceUid;
|
|
130
|
130
|
return $this;
|
|
131
|
131
|
}
|
|
132
|
132
|
|
|
|
@@ -171,16 +171,16 @@ class UserSignScoreEntity extends DataEntity
|
|
171
|
171
|
*/
|
|
172
|
172
|
public function getOrderId()
|
|
173
|
173
|
{
|
|
174
|
|
- return $this->order_id;
|
|
|
174
|
+ return $this->orderId;
|
|
175
|
175
|
}
|
|
176
|
176
|
|
|
177
|
177
|
/**
|
|
178
|
|
- * @param mixed $order_id
|
|
|
178
|
+ * @param mixed $orderId
|
|
179
|
179
|
* @return UserSignScoreEntity
|
|
180
|
180
|
*/
|
|
181
|
|
- public function setOrderId($order_id): UserSignScoreEntity
|
|
|
181
|
+ public function setOrderId($orderId): UserSignScoreEntity
|
|
182
|
182
|
{
|
|
183
|
|
- $this->order_id = $order_id;
|
|
|
183
|
+ $this->orderId = $orderId;
|
|
184
|
184
|
return $this;
|
|
185
|
185
|
}
|
|
186
|
186
|
|
|
|
@@ -225,16 +225,16 @@ class UserSignScoreEntity extends DataEntity
|
|
225
|
225
|
*/
|
|
226
|
226
|
public function getOrderType()
|
|
227
|
227
|
{
|
|
228
|
|
- return $this->order_type;
|
|
|
228
|
+ return $this->orderType;
|
|
229
|
229
|
}
|
|
230
|
230
|
|
|
231
|
231
|
/**
|
|
232
|
|
- * @param mixed $order_type
|
|
|
232
|
+ * @param mixed $orderType
|
|
233
|
233
|
* @return UserSignScoreEntity
|
|
234
|
234
|
*/
|
|
235
|
|
- public function setOrderType($order_type): UserSignScoreEntity
|
|
|
235
|
+ public function setOrderType($orderType): UserSignScoreEntity
|
|
236
|
236
|
{
|
|
237
|
|
- $this->order_type = $order_type;
|
|
|
237
|
+ $this->orderType = $orderType;
|
|
238
|
238
|
return $this;
|
|
239
|
239
|
}
|
|
240
|
240
|
|
|
|
@@ -261,16 +261,16 @@ class UserSignScoreEntity extends DataEntity
|
|
261
|
261
|
*/
|
|
262
|
262
|
public function getSourceType()
|
|
263
|
263
|
{
|
|
264
|
|
- return $this->source_type;
|
|
|
264
|
+ return $this->sourceType;
|
|
265
|
265
|
}
|
|
266
|
266
|
|
|
267
|
267
|
/**
|
|
268
|
|
- * @param mixed $source_type
|
|
|
268
|
+ * @param mixed $sourceType
|
|
269
|
269
|
* @return UserSignScoreEntity
|
|
270
|
270
|
*/
|
|
271
|
|
- public function setSourceType($source_type): UserSignScoreEntity
|
|
|
271
|
+ public function setSourceType($sourceType): UserSignScoreEntity
|
|
272
|
272
|
{
|
|
273
|
|
- $this->source_type = $source_type;
|
|
|
273
|
+ $this->sourceType = $sourceType;
|
|
274
|
274
|
return $this;
|
|
275
|
275
|
}
|
|
276
|
276
|
|
|
|
@@ -279,16 +279,16 @@ class UserSignScoreEntity extends DataEntity
|
|
279
|
279
|
*/
|
|
280
|
280
|
public function getSettlementTime()
|
|
281
|
281
|
{
|
|
282
|
|
- return $this->settlement_time;
|
|
|
282
|
+ return $this->settlementTime;
|
|
283
|
283
|
}
|
|
284
|
284
|
|
|
285
|
285
|
/**
|
|
286
|
|
- * @param mixed $settlement_time
|
|
|
286
|
+ * @param mixed $settlementTime
|
|
287
|
287
|
* @return UserSignScoreEntity
|
|
288
|
288
|
*/
|
|
289
|
|
- public function setSettlementTime($settlement_time): UserSignScoreEntity
|
|
|
289
|
+ public function setSettlementTime($settlementTime): UserSignScoreEntity
|
|
290
|
290
|
{
|
|
291
|
|
- $this->settlement_time = $settlement_time;
|
|
|
291
|
+ $this->settlementTime = $settlementTime;
|
|
292
|
292
|
return $this;
|
|
293
|
293
|
}
|
|
294
|
294
|
}
|