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