Files
orico-official-website/app/common/model/SysConfigBaseModel.php
2025-03-07 17:57:02 +08:00

34 lines
718 B
PHP

<?php
declare (strict_types = 1);
namespace app\common\model;
/**
* 系统配置模型
* @mixin \think\Model
*/
class SysConfigBaseModel extends BaseModel
{
// 表名
protected $name = 'sys_config';
// 主键
protected $pk = 'id';
// 字段信息
protected $schema = [
'id' => 'int',
'group_id' => 'int',
'title' => 'string',
'name' => 'string',
'value' => 'string',
'extra' => 'string',
'type' => 'string',
'sort' => 'int',
'remark' => 'string',
'created_at' => 'datetime',
'updated_at' => 'datetime',
'deleted_at' => 'datetime',
];
}