ApiBaseController.php 312 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\api;
  3. use app\BaseController;
  4. use app\common\model\AdminModel;
  5. use app\common\model\MenuModel;
  6. use think\facade\Session;
  7. use think\facade\View;
  8. /**
  9. * 控制器基础类
  10. */
  11. class ApiBaseController extends BaseController
  12. {
  13. // 初始化
  14. protected function initialize()
  15. {
  16. }
  17. }