Files
shengkao_pachong/app/model/UserConfig.php
杨志 35f9f6f31f UP
2026-01-21 09:07:10 +08:00

26 lines
467 B
PHP

<?php
declare (strict_types = 1);
namespace app\model;
use think\Model;
/**
* 用户配置模型
*/
class UserConfig extends Model
{
// 设置数据库连接
protected $connection = 'sqlite';
// 设置表名
protected $name = 'user_configs';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
// 定义时间戳字段名
protected $createTime = 'created_at';
protected $updateTime = 'updated_at';
}