Core.php 469 B

123456789101112131415161718192021222324
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\admin\controller;
  4. use app\admin\model\TaxiChauffeur;
  5. use app\common\AdminController;
  6. class Core extends AdminController
  7. {
  8. protected $taxi_chauffeur;
  9. public function __construct()
  10. {
  11. $this->taxi_chauffeur = new TaxiChauffeur();
  12. parent::__construct();
  13. }
  14. public function xs()
  15. {
  16. //$this->taxi_chauffeur->getChauffeurData();
  17. return '你好!你好!你好';
  18. }
  19. }