15 lines
245 B
PHP
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;
|
|
}
|