mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2026-06-08 04:48:10 +08:00
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | Library for ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2025 ThinkAdmin [ thinkadmin.top ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: https://thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// | 免费声明 ( https://thinkadmin.top/disclaimer )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary
|
||
// | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary
|
||
// +----------------------------------------------------------------------
|
||
|
||
declare (strict_types=1);
|
||
|
||
namespace think\admin\model;
|
||
|
||
use think\admin\Model;
|
||
|
||
/**
|
||
* 系统配置模型
|
||
*
|
||
* @property int $id
|
||
* @property string $name 配置名称
|
||
* @property string $type 配置分类
|
||
* @property string $value 配置内容
|
||
* @class SystemConfig
|
||
* @package think\admin\model
|
||
*/
|
||
class SystemConfig extends Model
|
||
{
|
||
protected $updateTime = false;
|
||
protected $createTime = false;
|
||
} |