feat: 更新提现记录模型,修正属性描述并增加新字段

This commit is contained in:
lingling 2025-03-21 20:17:36 +08:00
parent 92589b68b6
commit 7dee991b01
1 changed files with 20 additions and 13 deletions

View File

@ -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',
];
}