UserBank.php
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
namespace addons\shopro\model;
use think\Model;
use addons\shopro\exception\Exception;
use think\Db;
use traits\model\SoftDelete;
/**
* 钱包
*/
class UserBank extends Model
{
use SoftDelete;
// 表名,不含前缀
protected $name = 'shopro_user_bank';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $deleteTime = 'deletetime';
// 追加属性
protected $append = [
];
// 银行卡详情
public static function info()
{
$user = User::info();
$bank = self::where(['user_id' => $user->id])->find();
return $bank;
}
// 提现记录
public static function edit($params) {
$user = User::info();
extract($params);
$bank = self::where(['user_id' => $user->id])->find();
if ($bank) {
$bank->real_name = $real_name;
$bank->bank_name = $bank_name;
$bank->card_no = $card_no;
$bank->save();
} else {
$bank = new self();
$bank->user_id = $user->id;
$bank->real_name = $real_name;
$bank->bank_name = $bank_name;
$bank->card_no = $card_no;
$bank->save();
}
return $bank;
}
}