123456789101112131415161718192021222324 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\library\Sms as Smslib;
- use app\common\model\Ad;
- use app\common\model\Mobile;
- use app\admin\model\MobileOrder;
- use app\common\model\User;
- use think\Hook;
- /**
- * 首页
- * @inheritdoc
- */
- class Index extends Api
- {
- protected $noNeedLogin = '*';
- protected $noNeedRight = '*';
- public function test(){
- aaa();
- }
- }
|