// +---------------------------------------------------------------------- namespace App\Http\Controllers; use App\Services\ArticleBooksService; /** * 文章报名管理-控制器 * @author wesmiler * @since 2020/11/11 * Class ArticleBooksController * @package App\Http\Controllers */ class ArticleBooksController extends Backend { /** * 构造函数 * @author wesmiler * @since 2020/11/11 * ArticleBooksController constructor. */ public function __construct() { parent::__construct(); $this->service = new ArticleBooksService(); } }