Index.php 416 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\library\Sms as Smslib;
  5. use app\common\model\Ad;
  6. use app\common\model\Mobile;
  7. use app\admin\model\MobileOrder;
  8. use app\common\model\User;
  9. use think\Hook;
  10. /**
  11. * 首页
  12. * @inheritdoc
  13. */
  14. class Index extends Api
  15. {
  16. protected $noNeedLogin = '*';
  17. protected $noNeedRight = '*';
  18. public function test(){
  19. aaa();
  20. }
  21. }