| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- // +----------------------------------------------------------------------
- // | RXThinkCMF框架 [ RXThinkCMF ]
- // +----------------------------------------------------------------------
- // | 版权所有 2017~2021 南京RXThinkCMF研发中心
- // +----------------------------------------------------------------------
- // | 官方网站: http://www.rxthink.cn
- // +----------------------------------------------------------------------
- // | Author: 牧羊人 <1175401194@qq.com>
- // +----------------------------------------------------------------------
- namespace App\Http\Controllers;
- use App\Services\AdService;
- /**
- * 广告管理-控制器
- * @author 牧羊人
- * @since 2020/11/11
- * Class AdController
- * @package App\Http\Controllers
- */
- class AdController extends Backend
- {
- /**
- * 构造函数
- * @author 牧羊人
- * @since 2020/11/11
- * AdController constructor.
- */
- public function __construct()
- {
- parent::__construct();
- $this->service = new AdService();
- }
- }
|