123456789101112131415161718192021 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use think\Db;
- /**
- * 活动
- */
- class Active extends Api
- {
- protected $noNeedLogin = ['lists'];
- protected $noNeedRight = ['*'];
- public function index()
- {
- }
- }
|