From 7dee991b01a90632d9ca96507d7af4d7c7a6daf8 Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Fri, 21 Mar 2025 20:17:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E6=8F=90=E7=8E=B0?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E6=A8=A1=E5=9E=8B=EF=BC=8C=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=E5=B1=9E=E6=80=A7=E6=8F=8F=E8=BF=B0=E5=B9=B6=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E6=96=B0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/model/Withdraw.php | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/app/model/Withdraw.php b/app/model/Withdraw.php index 7587a7d..50c45a8 100644 --- a/app/model/Withdraw.php +++ b/app/model/Withdraw.php @@ -5,17 +5,23 @@ namespace app\model; use support\Model; /** - * @property integer $id VIP级别的唯一标识符 - * @property integer $user_id 用户id - * @property integer $amount 金额 - * @property integer $status 1申请中 2 已到账 3已驳回 4等待银行打款 5支付失败 - * @property integer $gift_amount 赠送积分 - * @property integer $createtime 创建时间(时间戳) - * @property integer $accumulated 提现积分 - * @property integer $fee 提现手续费 - * @property string $account 提现银行账户 - * @property string $bank_name 提现银行 + * Withdraw - 用户提现记录模型 + * + * @property int $id 用户提现记录唯一标识符 + * @property int $user_id 用户 ID + * @property float $amount 转账金额 + * @property string|null $status 状态码 1申请中 2 已到账 3已驳回 4等待银行打款 5支付失败 + * @property string|null $createtime2 创建时间 + * @property string|null $username 账号 + * @property string|null $status_text 状态解释 + * @property string|null $created_at 创建时间 + * @property string|null $updated_at 更新时间 + * @property string|null $order_number 订单编号 + * @property string $account 提现银行账户 + * @property string $bank_name 提现银行 * @property string $bank_username 提现银行用户名 + * @property int $accumulated 积分 + * @property int $fee 手续费 */ class Withdraw extends Model { @@ -42,10 +48,11 @@ class Withdraw extends Model 'createtime2', 'username', 'status_text', - 'accumulated', - 'fee', + 'order_number', 'account', 'bank_name', - 'bank_username' + 'bank_username', + 'accumulated', + 'fee', ]; }