webman/app/model/Withdraw.php

35 lines
528 B
PHP
Raw Normal View History

2025-02-15 12:13:10 +08:00
<?php
namespace app\model;
use support\Model;
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
}