webman/app/model/ActiveUsers.php

31 lines
459 B
PHP
Raw Normal View History

2025-02-22 21:06:49 +08:00
<?php
namespace app\model;
use support\Model;
class ActiveUsers extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'active_users';
/**
* The primary key associated with the table.
*
* @var string
*/
protected $primaryKey = 'id';
public $timestamps = true;
2025-02-23 15:52:05 +08:00
protected $fillable = [
'user_id',
'income',
'phone',
];
2025-02-22 21:06:49 +08:00
}