Active.php 250 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use think\Db;
  5. /**
  6. * 活动
  7. */
  8. class Active extends Api
  9. {
  10. protected $noNeedLogin = ['lists'];
  11. protected $noNeedRight = ['*'];
  12. public function index()
  13. {
  14. }
  15. }