1234567891011121314151617181920 |
- <?php
- /**
- * Created by PhpStorm.
- * User: chengxun
- * Date: 2018/5/14
- * Time: 17:48
- */
- namespace app\index\controller;
- use think\Controller;
- class Common extends Controller
- {
- public function _initialize()
- {
- parent::_initialize();
- }
- }
|