|
|
@@ -6,49 +6,49 @@ use app\entity\data\DataEntity;
|
|
6
|
6
|
|
|
7
|
7
|
class UserBillEntity extends DataEntity
|
|
8
|
8
|
{
|
|
9
|
|
- public $bill_id = null; // 用户账单id
|
|
10
|
|
- public $uid = null; // 用户uid
|
|
11
|
|
- public $link_id = null; // 关联订单id
|
|
12
|
|
- public $pm = null; // 0 = 支出 1 = 获得
|
|
13
|
|
- public $title = null; // 账单标题
|
|
14
|
|
- public $category = null; // 明细种类
|
|
15
|
|
- public $type = null; // 明细类型 commission佣金
|
|
16
|
|
- public $number = null; // 明细数字
|
|
17
|
|
- public $balance = null; // 剩余
|
|
18
|
|
- public $mark = null; // 备注
|
|
19
|
|
- public $create_time = null; // 添加时间
|
|
20
|
|
- public $status = null; // 0 = 待确定 1 = 有效 -1 = 无效
|
|
21
|
|
- public $commission_type = null; // 佣金类型
|
|
22
|
|
- public $order_sn = null; // 订单号
|
|
23
|
|
- public $tripartite = null; // 三方支付类型
|
|
24
|
|
- public $type_shop = null; // 平台或店铺类型
|
|
25
|
|
- public $mer_id = null; // 商户id
|
|
26
|
|
- public $source = null; // 1 线下 0线上
|
|
27
|
|
- public $order_type = null; // 订单类型 1自营 2 第三方
|
|
28
|
|
- public $is_red_brokerage = null; // 红积分对冲佣金 0正常佣金
|
|
29
|
|
- public $gzc = null; // 养老金是否已进入公证处log表
|
|
30
|
|
- public $is_gzc = null; // 养老金是否发起过
|
|
31
|
|
- public $take_time = null; // 结算时间
|
|
32
|
|
- public $district_id = null; // 区域ID
|
|
33
|
|
- public $street_id = null; // 街道ID
|
|
34
|
|
- public $month = null; // 月份
|
|
35
|
|
- public $num = null; // 份数
|
|
|
9
|
+ public $billId = null; // 用户账单id
|
|
|
10
|
+ public $uid = null; // 用户uid
|
|
|
11
|
+ public $linkId = null; // 关联订单id
|
|
|
12
|
+ public $pm = null; // 0 = 支出 1 = 获得
|
|
|
13
|
+ public $title = null; // 账单标题
|
|
|
14
|
+ public $category = null; // 明细种类
|
|
|
15
|
+ public $type = null; // 明细类型
|
|
|
16
|
+ public $number = null; // 明细数字
|
|
|
17
|
+ public $balance = null; // 剩余
|
|
|
18
|
+ public $mark = null; // 备注
|
|
|
19
|
+ public $createTime = null; // 添加时间
|
|
|
20
|
+ public $status = null; // 0 = 待确定 1 = 有效 -1 = 无效
|
|
|
21
|
+ public $commissionType = null; // 佣金类型
|
|
|
22
|
+ public $orderSn = null; // 订单号
|
|
|
23
|
+ public $tripartite = null;
|
|
|
24
|
+ public $typeShop = null; // 0平台1多多进宝2唯品会3苏宁易购4网易考拉5淘宝客6京东联盟7饿了么8线上 9话费
|
|
|
25
|
+ public $merId = null; // 商户id
|
|
|
26
|
+ public $source = null; // 1 线下 0线上
|
|
|
27
|
+ public $orderType = null; // 1自营 2 第三方 订单类型
|
|
|
28
|
+ public $isRedBrokerage = null; // 1红积分对冲佣金 0正常佣金
|
|
|
29
|
+ public $gzc = null; // 养老金是否已进入公证处log表0:未进入。1:已进入
|
|
|
30
|
+ public $isGzc = null; // 0:未发起 1:已发起 2:已成功
|
|
|
31
|
+ public $takeTime = null; // 结算时间
|
|
|
32
|
+ public $districtId = null;
|
|
|
33
|
+ public $streetId = null;
|
|
|
34
|
+ public $month = null; // 月份
|
|
|
35
|
+ public $num = null; // 份数
|
|
36
|
36
|
|
|
37
|
37
|
/**
|
|
38
|
38
|
* @return mixed
|
|
39
|
39
|
*/
|
|
40
|
40
|
public function getBillId()
|
|
41
|
41
|
{
|
|
42
|
|
- return $this->bill_id;
|
|
|
42
|
+ return $this->billId;
|
|
43
|
43
|
}
|
|
44
|
44
|
|
|
45
|
45
|
/**
|
|
46
|
|
- * @param mixed $bill_id
|
|
|
46
|
+ * @param mixed $billId
|
|
47
|
47
|
* @return UserBillEntity
|
|
48
|
48
|
*/
|
|
49
|
|
- public function setBillId($bill_id): UserBillEntity
|
|
|
49
|
+ public function setBillId($billId): UserBillEntity
|
|
50
|
50
|
{
|
|
51
|
|
- $this->bill_id = $bill_id;
|
|
|
51
|
+ $this->billId = $billId;
|
|
52
|
52
|
return $this;
|
|
53
|
53
|
}
|
|
54
|
54
|
|
|
|
@@ -75,16 +75,16 @@ class UserBillEntity extends DataEntity
|
|
75
|
75
|
*/
|
|
76
|
76
|
public function getLinkId()
|
|
77
|
77
|
{
|
|
78
|
|
- return $this->link_id;
|
|
|
78
|
+ return $this->linkId;
|
|
79
|
79
|
}
|
|
80
|
80
|
|
|
81
|
81
|
/**
|
|
82
|
|
- * @param mixed $link_id
|
|
|
82
|
+ * @param mixed $linkId
|
|
83
|
83
|
* @return UserBillEntity
|
|
84
|
84
|
*/
|
|
85
|
|
- public function setLinkId($link_id): UserBillEntity
|
|
|
85
|
+ public function setLinkId($linkId): UserBillEntity
|
|
86
|
86
|
{
|
|
87
|
|
- $this->link_id = $link_id;
|
|
|
87
|
+ $this->linkId = $linkId;
|
|
88
|
88
|
return $this;
|
|
89
|
89
|
}
|
|
90
|
90
|
|
|
|
@@ -219,16 +219,16 @@ class UserBillEntity extends DataEntity
|
|
219
|
219
|
*/
|
|
220
|
220
|
public function getCreateTime()
|
|
221
|
221
|
{
|
|
222
|
|
- return $this->create_time;
|
|
|
222
|
+ return $this->createTime;
|
|
223
|
223
|
}
|
|
224
|
224
|
|
|
225
|
225
|
/**
|
|
226
|
|
- * @param mixed $create_time
|
|
|
226
|
+ * @param mixed $createTime
|
|
227
|
227
|
* @return UserBillEntity
|
|
228
|
228
|
*/
|
|
229
|
|
- public function setCreateTime($create_time): UserBillEntity
|
|
|
229
|
+ public function setCreateTime($createTime): UserBillEntity
|
|
230
|
230
|
{
|
|
231
|
|
- $this->create_time = $create_time;
|
|
|
231
|
+ $this->createTime = $createTime;
|
|
232
|
232
|
return $this;
|
|
233
|
233
|
}
|
|
234
|
234
|
|
|
|
@@ -255,16 +255,16 @@ class UserBillEntity extends DataEntity
|
|
255
|
255
|
*/
|
|
256
|
256
|
public function getCommissionType()
|
|
257
|
257
|
{
|
|
258
|
|
- return $this->commission_type;
|
|
|
258
|
+ return $this->commissionType;
|
|
259
|
259
|
}
|
|
260
|
260
|
|
|
261
|
261
|
/**
|
|
262
|
|
- * @param mixed $commission_type
|
|
|
262
|
+ * @param mixed $commissionType
|
|
263
|
263
|
* @return UserBillEntity
|
|
264
|
264
|
*/
|
|
265
|
|
- public function setCommissionType($commission_type): UserBillEntity
|
|
|
265
|
+ public function setCommissionType($commissionType): UserBillEntity
|
|
266
|
266
|
{
|
|
267
|
|
- $this->commission_type = $commission_type;
|
|
|
267
|
+ $this->commissionType = $commissionType;
|
|
268
|
268
|
return $this;
|
|
269
|
269
|
}
|
|
270
|
270
|
|
|
|
@@ -273,16 +273,16 @@ class UserBillEntity extends DataEntity
|
|
273
|
273
|
*/
|
|
274
|
274
|
public function getOrderSn()
|
|
275
|
275
|
{
|
|
276
|
|
- return $this->order_sn;
|
|
|
276
|
+ return $this->orderSn;
|
|
277
|
277
|
}
|
|
278
|
278
|
|
|
279
|
279
|
/**
|
|
280
|
|
- * @param mixed $order_sn
|
|
|
280
|
+ * @param mixed $orderSn
|
|
281
|
281
|
* @return UserBillEntity
|
|
282
|
282
|
*/
|
|
283
|
|
- public function setOrderSn($order_sn): UserBillEntity
|
|
|
283
|
+ public function setOrderSn($orderSn): UserBillEntity
|
|
284
|
284
|
{
|
|
285
|
|
- $this->order_sn = $order_sn;
|
|
|
285
|
+ $this->orderSn = $orderSn;
|
|
286
|
286
|
return $this;
|
|
287
|
287
|
}
|
|
288
|
288
|
|
|
|
@@ -309,16 +309,16 @@ class UserBillEntity extends DataEntity
|
|
309
|
309
|
*/
|
|
310
|
310
|
public function getTypeShop()
|
|
311
|
311
|
{
|
|
312
|
|
- return $this->type_shop;
|
|
|
312
|
+ return $this->typeShop;
|
|
313
|
313
|
}
|
|
314
|
314
|
|
|
315
|
315
|
/**
|
|
316
|
|
- * @param mixed $type_shop
|
|
|
316
|
+ * @param mixed $typeShop
|
|
317
|
317
|
* @return UserBillEntity
|
|
318
|
318
|
*/
|
|
319
|
|
- public function setTypeShop($type_shop): UserBillEntity
|
|
|
319
|
+ public function setTypeShop($typeShop): UserBillEntity
|
|
320
|
320
|
{
|
|
321
|
|
- $this->type_shop = $type_shop;
|
|
|
321
|
+ $this->typeShop = $typeShop;
|
|
322
|
322
|
return $this;
|
|
323
|
323
|
}
|
|
324
|
324
|
|
|
|
@@ -327,16 +327,16 @@ class UserBillEntity extends DataEntity
|
|
327
|
327
|
*/
|
|
328
|
328
|
public function getMerId()
|
|
329
|
329
|
{
|
|
330
|
|
- return $this->mer_id;
|
|
|
330
|
+ return $this->merId;
|
|
331
|
331
|
}
|
|
332
|
332
|
|
|
333
|
333
|
/**
|
|
334
|
|
- * @param mixed $mer_id
|
|
|
334
|
+ * @param mixed $merId
|
|
335
|
335
|
* @return UserBillEntity
|
|
336
|
336
|
*/
|
|
337
|
|
- public function setMerId($mer_id): UserBillEntity
|
|
|
337
|
+ public function setMerId($merId): UserBillEntity
|
|
338
|
338
|
{
|
|
339
|
|
- $this->mer_id = $mer_id;
|
|
|
339
|
+ $this->merId = $merId;
|
|
340
|
340
|
return $this;
|
|
341
|
341
|
}
|
|
342
|
342
|
|
|
|
@@ -363,16 +363,16 @@ class UserBillEntity extends DataEntity
|
|
363
|
363
|
*/
|
|
364
|
364
|
public function getOrderType()
|
|
365
|
365
|
{
|
|
366
|
|
- return $this->order_type;
|
|
|
366
|
+ return $this->orderType;
|
|
367
|
367
|
}
|
|
368
|
368
|
|
|
369
|
369
|
/**
|
|
370
|
|
- * @param mixed $order_type
|
|
|
370
|
+ * @param mixed $orderType
|
|
371
|
371
|
* @return UserBillEntity
|
|
372
|
372
|
*/
|
|
373
|
|
- public function setOrderType($order_type): UserBillEntity
|
|
|
373
|
+ public function setOrderType($orderType): UserBillEntity
|
|
374
|
374
|
{
|
|
375
|
|
- $this->order_type = $order_type;
|
|
|
375
|
+ $this->orderType = $orderType;
|
|
376
|
376
|
return $this;
|
|
377
|
377
|
}
|
|
378
|
378
|
|
|
|
@@ -381,16 +381,16 @@ class UserBillEntity extends DataEntity
|
|
381
|
381
|
*/
|
|
382
|
382
|
public function getIsRedBrokerage()
|
|
383
|
383
|
{
|
|
384
|
|
- return $this->is_red_brokerage;
|
|
|
384
|
+ return $this->isRedBrokerage;
|
|
385
|
385
|
}
|
|
386
|
386
|
|
|
387
|
387
|
/**
|
|
388
|
|
- * @param mixed $is_red_brokerage
|
|
|
388
|
+ * @param mixed $isRedBrokerage
|
|
389
|
389
|
* @return UserBillEntity
|
|
390
|
390
|
*/
|
|
391
|
|
- public function setIsRedBrokerage($is_red_brokerage): UserBillEntity
|
|
|
391
|
+ public function setIsRedBrokerage($isRedBrokerage): UserBillEntity
|
|
392
|
392
|
{
|
|
393
|
|
- $this->is_red_brokerage = $is_red_brokerage;
|
|
|
393
|
+ $this->isRedBrokerage = $isRedBrokerage;
|
|
394
|
394
|
return $this;
|
|
395
|
395
|
}
|
|
396
|
396
|
|
|
|
@@ -417,16 +417,16 @@ class UserBillEntity extends DataEntity
|
|
417
|
417
|
*/
|
|
418
|
418
|
public function getIsGzc()
|
|
419
|
419
|
{
|
|
420
|
|
- return $this->is_gzc;
|
|
|
420
|
+ return $this->isGzc;
|
|
421
|
421
|
}
|
|
422
|
422
|
|
|
423
|
423
|
/**
|
|
424
|
|
- * @param mixed $is_gzc
|
|
|
424
|
+ * @param mixed $isGzc
|
|
425
|
425
|
* @return UserBillEntity
|
|
426
|
426
|
*/
|
|
427
|
|
- public function setIsGzc($is_gzc): UserBillEntity
|
|
|
427
|
+ public function setIsGzc($isGzc): UserBillEntity
|
|
428
|
428
|
{
|
|
429
|
|
- $this->is_gzc = $is_gzc;
|
|
|
429
|
+ $this->isGzc = $isGzc;
|
|
430
|
430
|
return $this;
|
|
431
|
431
|
}
|
|
432
|
432
|
|
|
|
@@ -435,16 +435,16 @@ class UserBillEntity extends DataEntity
|
|
435
|
435
|
*/
|
|
436
|
436
|
public function getTakeTime()
|
|
437
|
437
|
{
|
|
438
|
|
- return $this->take_time;
|
|
|
438
|
+ return $this->takeTime;
|
|
439
|
439
|
}
|
|
440
|
440
|
|
|
441
|
441
|
/**
|
|
442
|
|
- * @param mixed $take_time
|
|
|
442
|
+ * @param mixed $takeTime
|
|
443
|
443
|
* @return UserBillEntity
|
|
444
|
444
|
*/
|
|
445
|
|
- public function setTakeTime($take_time): UserBillEntity
|
|
|
445
|
+ public function setTakeTime($takeTime): UserBillEntity
|
|
446
|
446
|
{
|
|
447
|
|
- $this->take_time = $take_time;
|
|
|
447
|
+ $this->takeTime = $takeTime;
|
|
448
|
448
|
return $this;
|
|
449
|
449
|
}
|
|
450
|
450
|
|
|
|
@@ -453,16 +453,16 @@ class UserBillEntity extends DataEntity
|
|
453
|
453
|
*/
|
|
454
|
454
|
public function getDistrictId()
|
|
455
|
455
|
{
|
|
456
|
|
- return $this->district_id;
|
|
|
456
|
+ return $this->districtId;
|
|
457
|
457
|
}
|
|
458
|
458
|
|
|
459
|
459
|
/**
|
|
460
|
|
- * @param mixed $district_id
|
|
|
460
|
+ * @param mixed $districtId
|
|
461
|
461
|
* @return UserBillEntity
|
|
462
|
462
|
*/
|
|
463
|
|
- public function setDistrictId($district_id): UserBillEntity
|
|
|
463
|
+ public function setDistrictId($districtId): UserBillEntity
|
|
464
|
464
|
{
|
|
465
|
|
- $this->district_id = $district_id;
|
|
|
465
|
+ $this->districtId = $districtId;
|
|
466
|
466
|
return $this;
|
|
467
|
467
|
}
|
|
468
|
468
|
|
|
|
@@ -471,16 +471,16 @@ class UserBillEntity extends DataEntity
|
|
471
|
471
|
*/
|
|
472
|
472
|
public function getStreetId()
|
|
473
|
473
|
{
|
|
474
|
|
- return $this->street_id;
|
|
|
474
|
+ return $this->streetId;
|
|
475
|
475
|
}
|
|
476
|
476
|
|
|
477
|
477
|
/**
|
|
478
|
|
- * @param mixed $street_id
|
|
|
478
|
+ * @param mixed $streetId
|
|
479
|
479
|
* @return UserBillEntity
|
|
480
|
480
|
*/
|
|
481
|
|
- public function setStreetId($street_id): UserBillEntity
|
|
|
481
|
+ public function setStreetId($streetId): UserBillEntity
|
|
482
|
482
|
{
|
|
483
|
|
- $this->street_id = $street_id;
|
|
|
483
|
+ $this->streetId = $streetId;
|
|
484
|
484
|
return $this;
|
|
485
|
485
|
}
|
|
486
|
486
|
|