Base.php 710 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /*
  3. * @Descripttion:
  4. * @version:
  5. * @Author: wei
  6. * @Date: 2022-06-09 14:39:53
  7. * @LastEditors: wei
  8. * @LastEditTime: 2022-06-09 15:43:08
  9. */
  10. /*
  11. * @Descripttion:
  12. * @version:
  13. * @Author: wei
  14. * @Date: 2022-06-09 14:39:53
  15. * @LastEditors: wei
  16. * @LastEditTime: 2022-06-09 15:35:57
  17. */
  18. namespace catchAdmin\api\controller;
  19. use catchAdmin\permissions\model\Roles;
  20. use catchAdmin\permissions\model\Users as ModelUsers;
  21. use catcher\base\CatchRequest as Request;
  22. use catcher\CatchResponse;
  23. use catcher\base\CatchController;
  24. use think\Db;
  25. class Base extends CatchController
  26. {
  27. public function __initialize()
  28. {
  29. var_dump('我测试一下');
  30. }
  31. public function test()
  32. {
  33. }
  34. }