tp/app/model/System/SystemSiteSetting.php
2026-03-11 11:11:10 +08:00

42 lines
1.2 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: Liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace app\model\System;
use think\Model;
use think\model\concern\SoftDelete;
/**
* 站点设置模型
*/
class SystemSiteSetting extends Model
{
// 启用软删除
use SoftDelete;
// 数据库表名
protected $name = 'mete_system_site_setting';
// 字段类型转换
protected $type = [
'id' => 'integer',
'tid' => 'integer',
'sitename' => 'string',
'logo' => 'string',
'logo-w' => 'string',
'description' => 'string',
'copyright' => 'string',
'companyname' => 'string',
'icp' => 'string',
'create_time' => 'datetime',
];
}