Index.php 240 B

123456789101112131415
  1. <?php
  2. namespace app\index\controller;
  3. use think\Request;
  4. use think\Db;
  5. class Index extends \think\Controller
  6. {
  7. public function model(){
  8. dump('building');
  9. }
  10. public function agent(){
  11. dump('building');
  12. }
  13. }