1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 11:58:41 +08:00
2020-03-30 19:35:49 +08:00

42 lines
452 B
PHP

<?php
namespace App\Models;
class Config 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_config';
}
}