Files
2026-03-07 19:42:22 +08:00

15 lines
245 B
PHP

<?php
declare(strict_types=1);
namespace app\admin\model;
use support\think\Model;
class UserGroup extends Model
{
protected string $table = 'user_group';
protected string $pk = 'id';
protected bool $autoWriteTimestamp = true;
}