29 lines
644 B
PHP
29 lines
644 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class User_account_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_app_user_account';
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
|
|
/**
|
|
* Notes:配置
|
|
* Created on: 2019/12/27 14:52
|
|
* Created by: dengbw
|
|
* @return array
|
|
*/
|
|
public function config()
|
|
{
|
|
return array(
|
|
1 => array(
|
|
'deal' => array('img_url' => 'https://qs.liche.cn/wechat_app/liche', 'bg_color' => '#fb3939'),
|
|
'rule' => ''
|
|
)
|
|
);
|
|
}
|
|
}
|