// +---------------------------------------------------------------------- namespace App\Http\Controllers; use App\Services\GongdengOrderService; use App\Services\OrdersService; /** * 供灯订单管理-控制器 * @author wesmiler * @since 2020/11/11 * Class GongdengOrderController * @package App\Http\Controllers */ class GongdengOrderController extends Backend { /** * 构造函数 * @author wesmiler * @since 2020/11/11 * GongdengOrderController constructor. */ public function __construct() { parent::__construct(); $this->service = new GongdengOrderService(); } }