feat: 更新 Withdraw 模型,添加可填充字段以支持更多用户信息
This commit is contained in:
parent
6e1047997b
commit
f19bb0c01b
|
@ -35,5 +35,17 @@ class Withdraw extends Model
|
||||||
|
|
||||||
|
|
||||||
// public $timestamps = false;
|
// public $timestamps = false;
|
||||||
|
protected $fillable = [
|
||||||
|
'user_id',
|
||||||
|
'amount',
|
||||||
|
'status',
|
||||||
|
'createtime2',
|
||||||
|
'username',
|
||||||
|
'status_text',
|
||||||
|
'accumulated',
|
||||||
|
'fee',
|
||||||
|
'account',
|
||||||
|
'bank_name',
|
||||||
|
'bank_username'
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue