12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /*
- * @Descripttion:
- * @version:
- * @Author: wei
- * @Date: 2022-06-09 14:39:53
- * @LastEditors: wei
- * @LastEditTime: 2022-06-09 15:43:08
- */
- /*
- * @Descripttion:
- * @version:
- * @Author: wei
- * @Date: 2022-06-09 14:39:53
- * @LastEditors: wei
- * @LastEditTime: 2022-06-09 15:35:57
- */
- namespace catchAdmin\api\controller;
- use catchAdmin\permissions\model\Roles;
- use catchAdmin\permissions\model\Users as ModelUsers;
- use catcher\base\CatchRequest as Request;
- use catcher\CatchResponse;
- use catcher\base\CatchController;
- use think\Db;
- class Base extends CatchController
- {
-
- public function __initialize()
- {
- var_dump('我测试一下');
- }
-
- public function test()
- {
- }
- }
|