29 lines
511 B
PHP
29 lines
511 B
PHP
<?php
|
||
/*
|
||
* description:
|
||
* author:wh
|
||
* email:
|
||
* createTime:{2023/1/21} {16:22}
|
||
*/
|
||
|
||
namespace app\index\controller;
|
||
|
||
|
||
use app\apidata\Config;
|
||
use app\common\model\TabConf;
|
||
use think\Controller;
|
||
use think\Db;
|
||
use think\Request;
|
||
use wanghua\general_utility_tools_php\framework\BaseController;
|
||
use wanghua\general_utility_tools_php\tool\Tools;
|
||
|
||
class BaseCommonController extends BaseController
|
||
{
|
||
function __construct(Request $request = null)
|
||
{
|
||
parent::__construct($request);
|
||
|
||
|
||
}
|
||
|
||
} |