40 lines
971 B
PHP
40 lines
971 B
PHP
<?php
|
|
|
|
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 提现银行
|
|
* @property string $bank_username 提现银行用户名
|
|
*/
|
|
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';
|
|
|
|
|
|
// public $timestamps = false;
|
|
|
|
}
|