webman/app/model/Withdraw.php

42 lines
890 B
PHP
Raw Normal View History

2025-02-15 12:13:10 +08:00
<?php
namespace app\model;
use support\Model;
2025-02-22 13:54:04 +08:00
/**
* @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 创建时间(时间戳)
*/
2025-02-15 12:13:10 +08:00
class Withdraw extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'withdraw';
/**
* The primary key associated with the table.
*
* @var string
*/
protected $primaryKey = 'id';
2025-02-20 13:30:37 +08:00
// public $timestamps = false;
2025-02-16 22:40:30 +08:00
protected $fillable = [
'user_id',
'amount',
'status',
'createtime2',
'username',
'status_text',
];
2025-02-15 12:13:10 +08:00
}