22 lines
427 B
PHP
22 lines
427 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: linfan
|
|
* Date: 2018/11/5
|
|
* Time: 13:47
|
|
*/
|
|
|
|
defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
class Sys_config_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_sys_config';
|
|
|
|
const CALL_CONFIG_KEY = 'callConfig'; // 呼叫配置
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
}
|