feat: 新增

This commit is contained in:
陈狼 2025-02-22 21:06:49 +08:00
parent 8702a21115
commit 190179207e
1 changed files with 24 additions and 0 deletions

24
app/model/ActiveUsers.php Normal file
View File

@ -0,0 +1,24 @@
<?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;
}