From f19bb0c01b792ff0ebfc89907bb02016efda0b58 Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Mon, 17 Mar 2025 21:57:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=20Withdraw=20?= =?UTF-8?q?=E6=A8=A1=E5=9E=8B=EF=BC=8C=E6=B7=BB=E5=8A=A0=E5=8F=AF=E5=A1=AB?= =?UTF-8?q?=E5=85=85=E5=AD=97=E6=AE=B5=E4=BB=A5=E6=94=AF=E6=8C=81=E6=9B=B4?= =?UTF-8?q?=E5=A4=9A=E7=94=A8=E6=88=B7=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/model/Withdraw.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/app/model/Withdraw.php b/app/model/Withdraw.php index 1e9064d..7587a7d 100644 --- a/app/model/Withdraw.php +++ b/app/model/Withdraw.php @@ -35,5 +35,17 @@ class Withdraw extends Model // public $timestamps = false; - + protected $fillable = [ + 'user_id', + 'amount', + 'status', + 'createtime2', + 'username', + 'status_text', + 'accumulated', + 'fee', + 'account', + 'bank_name', + 'bank_username' + ]; }