Files
liche/common/models/app/User_account_model.php
xiaoyu 6a9316dd64 0507
2025-05-07 12:39:07 +08:00

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' => ''
)
);
}
}