1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 03:50:56 +08:00
2020-04-10 19:27:46 +08:00

42 lines
454 B
PHP

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