Index.php 286 B

123456789101112131415161718
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use think\Db;
  5. /** 首页接口*/
  6. class Index extends Api{
  7. protected $noNeedLogin = ['*'];
  8. protected $noNeedRight = ['*'];
  9. /** 首页 **/
  10. public function index(){$this->success('请求成功');}
  11. }