zm
2021-04-09 93652ca875fc904a25a7f214adc548745573950a
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
 
namespace app\models;
 
use Yii;
 
/**
 * This is the model class for table "{{%share_cash}}".
 *
 * @property int $id
 * @property int $mall_id
 * @property int $user_id
 * @property string $order_no 订单号
 * @property string $price 提现金额
 * @property string $service_charge 提现手续费(%)
 * @property string $type 提现方式 auto--自动打款 wechat--微信打款 alipay--支付宝打款 bank--银行转账 balance--打款到余额
 * @property string $extra 额外信息 例如微信账号、支付宝账号等
 * @property int $status 提现状态 0--申请 1--同意 2--已打款 3--驳回
 * @property int $is_delete
 * @property string $created_at
 * @property string $updated_at
 * @property string $deleted_at
 * @property string $content
 * @property User $user
 */
class ShareCash extends ModelActiveRecord
{
    /**
     * {@inheritdoc}
     */
    public static function tableName()
    {
        return '{{%share_cash}}';
    }
 
    /**
     * {@inheritdoc}
     */
    public function rules()
    {
        return [
            [['mall_id', 'user_id', 'created_at', 'updated_at', 'deleted_at'], 'required'],
            [['mall_id', 'user_id', 'status', 'is_delete'], 'integer'],
            [['price', 'service_charge'], 'number'],
            [['extra', 'content'], 'string'],
            [['created_at', 'updated_at', 'deleted_at'], 'safe'],
            [['order_no', 'type'], 'string', 'max' => 255],
        ];
    }
 
    /**
     * {@inheritdoc}
     */
    public function attributeLabels()
    {
        return [
            'id' => 'ID',
            'mall_id' => 'Mall ID',
            'user_id' => 'User ID',
            'order_no' => '订单号',
            'price' => '提现金额',
            'service_charge' => '提现手续费(%)',
            'type' => '提现方式 auto--自动打款 wechat--微信打款 alipay--支付宝打款 bank--银行转账 balance--打款到余额',
            'extra' => '额外信息 例如微信账号、支付宝账号等',
            'status' => '提现状态 0--申请 1--同意 2--已打款 3--驳回',
            'is_delete' => 'Is Delete',
            'created_at' => 'Created At',
            'updated_at' => 'Updated At',
            'deleted_at' => 'Deleted At',
            'content' => 'Content',
        ];
    }
 
    public function getUser()
    {
        return $this->hasOne(User::className(), ['id' => 'user_id']);
    }
 
    public function getStatusText($status)
    {
        $text = ['申请中', '同意申请,待打款', '已打款', '驳回'];
        return isset($text[$status]) ? $text[$status] : '未知状态' . $status;
    }
 
    public function getTypeText($type)
    {
        $typeList = [
            'auto' => '自动打款',
            'wechat' => '微信打款',
            'alipay' => '支付宝打款',
            'bank' => '银行转账',
            'balance' => '打款到余额'
        ];
        return isset($typeList[$type]) ? $typeList[$type] : '未知类型:' . $type;
    }
 
    public function getTypeText2($type)
    {
        $typeList = [
            'auto' => '自动打款',
            'wechat' => '微信钱包',
            'alipay' => '支付宝',
            'bank' => '银行卡',
            'balance' => '余额'
        ];
        return isset($typeList[$type]) ? $typeList[$type] : '未知类型:' . $type;
    }
}