Base.php 193 B

123456789101112131415161718
  1. <?php
  2. namespace app\admin\controller;
  3. use think\Controller;
  4. use think\Db;
  5. class Base extends Controller
  6. {
  7. protected function initialize()
  8. {
  9. parent::initialize();
  10. }
  11. }