1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 11:41:27 +08:00
2021-02-13 18:21:42 +08:00

41 lines
480 B
PHP

<?php
namespace App\Models;
class Setting extends Model
{
/**
* 主键
*
* @var int
*/
public $id = 0;
/**
* 配置块
*
* @var string
*/
public $section = '';
/**
* 配置键
*
* @var string
*/
public $item_key = '';
/**
* 配置值
*
* @var string
*/
public $item_value = '';
public function getSource(): string
{
return 'kg_setting';
}
}